]> git.wh0rd.org - tt-rss.git/blobdiff - lib/dijit/_base/place.js.uncompressed.js
modify dojo rebuild script to remove uncompressed files
[tt-rss.git] / lib / dijit / _base / place.js.uncompressed.js
index b8deaf03f5261a2579675ff658b86bb46291306c..c71cabcd31c50a07dfea2e1f1edfb136ff82bf30 100644 (file)
@@ -1,17 +1,21 @@
 define("dijit/_base/place", [
        "dojo/_base/array", // array.forEach
-       "dojo/_base/lang", // lang.isArray
+       "dojo/_base/lang", // lang.isArray, lang.mixin
        "dojo/window", // windowUtils.getBox
        "../place",
-       ".."    // export to dijit namespace
+       "../main"       // export to dijit namespace
 ], function(array, lang, windowUtils, place, dijit){
 
        // module:
        //              dijit/_base/place
-       // summary:
-       //              Back compatibility module, new code should use dijit/place directly instead of using this module.
 
-       dijit.getViewport = function(){
+
+       var exports = {
+               // summary:
+               //              Deprecated back compatibility module, new code should use dijit/place directly instead of using this module.
+       };
+
+       exports.getViewport = function(){
                // summary:
                //              Deprecated method to return the dimensions and scroll position of the viewable area of a browser window.
                //              New code should use windowUtils.getBox()
@@ -19,29 +23,18 @@ define("dijit/_base/place", [
                return windowUtils.getBox();
        };
 
-       /*=====
-       dijit.placeOnScreen = function(node, pos, corners, padding){
-               // summary:
-               //              Positions one of the node's corners at specified position
-               //              such that node is fully visible in viewport.
-               //              Deprecated, new code should use dijit.place.at() instead.
-       };
-       =====*/
-       dijit.placeOnScreen = place.at;
+       exports.placeOnScreen = place.at;
 
-       /*=====
-       dijit.placeOnScreenAroundElement = function(node, aroundElement, aroundCorners, layoutNode){
+       exports.placeOnScreenAroundElement = function(node, aroundNode, aroundCorners, layoutNode){
                // summary:
                //              Like dijit.placeOnScreenAroundNode(), except it accepts an arbitrary object
                //              for the "around" argument and finds a proper processor to place a node.
-               //              Deprecated, new code should use dijit.place.around() instead.
-       };
-       ====*/
-       dijit.placeOnScreenAroundElement = function(node, aroundNode, aroundCorners, layoutNode){
+               //              Deprecated, new code should use dijit/place.around() instead.
+
                // Convert old style {"BL": "TL", "BR": "TR"} type argument
                // to style needed by dijit.place code:
                //              [
-               //                      {aroundCorner: "BL", corner: "TL" },
+               //                      {aroundCorner: "BL", corner: "TL" },
                //                      {aroundCorner: "BR", corner: "TR" }
                //              ]
                var positions;
@@ -57,50 +50,48 @@ define("dijit/_base/place", [
                return place.around(node, aroundNode, positions, true, layoutNode);
        };
 
+       exports.placeOnScreenAroundNode = exports.placeOnScreenAroundElement;
        /*=====
-       dijit.placeOnScreenAroundNode = function(node, aroundNode, aroundCorners, layoutNode){
+       exports.placeOnScreenAroundNode = function(node, aroundNode, aroundCorners, layoutNode){
                // summary:
                //              Position node adjacent or kitty-corner to aroundNode
                //              such that it's fully visible in viewport.
-               //              Deprecated, new code should use dijit.place.around() instead.
+               //              Deprecated, new code should use dijit/place.around() instead.
        };
        =====*/
-       dijit.placeOnScreenAroundNode = dijit.placeOnScreenAroundElement;
 
+       exports.placeOnScreenAroundRectangle = exports.placeOnScreenAroundElement;
        /*=====
-       dijit.placeOnScreenAroundRectangle = function(node, aroundRect, aroundCorners, layoutNode){
+       exports.placeOnScreenAroundRectangle = function(node, aroundRect, aroundCorners, layoutNode){
                // summary:
                //              Like dijit.placeOnScreenAroundNode(), except that the "around"
                //              parameter is an arbitrary rectangle on the screen (x, y, width, height)
                //              instead of a dom node.
-               //              Deprecated, new code should use dijit.place.around() instead.
+               //              Deprecated, new code should use dijit/place.around() instead.
        };
        =====*/
-       dijit.placeOnScreenAroundRectangle = dijit.placeOnScreenAroundElement;
 
-       dijit.getPopupAroundAlignment = function(/*Array*/ position, /*Boolean*/ leftToRight){
+       exports.getPopupAroundAlignment = function(/*Array*/ position, /*Boolean*/ leftToRight){
                // summary:
                //              Deprecated method, unneeded when using dijit/place directly.
                //              Transforms the passed array of preferred positions into a format suitable for
-               //              passing as the aroundCorners argument to dijit.placeOnScreenAroundElement.
-               //
+               //              passing as the aroundCorners argument to dijit/place.placeOnScreenAroundElement.
                // position: String[]
                //              This variable controls the position of the drop down.
                //              It's an array of strings with the following values:
                //
-               //                      * before: places drop down to the left of the target node/widget, or to the right in
-               //                        the case of RTL scripts like Hebrew and Arabic
-               //                      * after: places drop down to the right of the target node/widget, or to the left in
-               //                        the case of RTL scripts like Hebrew and Arabic
-               //                      * above: drop down goes above target node
-               //                      * below: drop down goes below target node
+               //              - before: places drop down to the left of the target node/widget, or to the right in
+               //                the case of RTL scripts like Hebrew and Arabic
+               //              - after: places drop down to the right of the target node/widget, or to the left in
+               //                the case of RTL scripts like Hebrew and Arabic
+               //              - above: drop down goes above target node
+               //              - below: drop down goes below target node
                //
                //              The list is positions is tried, in order, until a position is found where the drop down fits
                //              within the viewport.
-               //
                // leftToRight: Boolean
                //              Whether the popup will be displaying in leftToRight mode.
-               //
+
                var align = {};
                array.forEach(position, function(pos){
                        var ltr = leftToRight;
@@ -133,5 +124,8 @@ define("dijit/_base/place", [
                return align;
        };
 
-       return dijit;
+       lang.mixin(dijit, exports);
+
+       /*===== return exports; =====*/
+       return dijit;   // for back compat :-(
 });