]> git.wh0rd.org - tt-rss.git/blobdiff - lib/dijit/hccss.js.uncompressed.js
modify dojo rebuild script to remove uncompressed files
[tt-rss.git] / lib / dijit / hccss.js.uncompressed.js
index 80ea79231628277ff444febc77fe430f3dde0fa2..9e0ac88e8bf422c2e0fa8d35ca39b67a015877ea 100644 (file)
@@ -1,52 +1,23 @@
-define("dijit/hccss", [
-       "require",                      // require.toUrl
-       "dojo/_base/config", // config.blankGif
-       "dojo/dom-class", // domClass.add domConstruct.create domStyle.getComputedStyle
-       "dojo/dom-construct", // domClass.add domConstruct.create domStyle.getComputedStyle
-       "dojo/dom-style", // domClass.add domConstruct.create domStyle.getComputedStyle
-       "dojo/ready", // ready
-       "dojo/_base/sniff", // has("ie") has("mozilla")
-       "dojo/_base/window" // win.body
-], function(require, config, domClass, domConstruct, domStyle, ready, has, win){
+define("dijit/hccss", ["dojo/dom-class", "dojo/hccss", "dojo/ready", "dojo/_base/window"], function(domClass, has, ready, win){
 
        // module:
        //              dijit/hccss
-       // summary:
-       //              Test if computer is in high contrast mode, and sets dijit_a11y flag on <body> if it is.
 
-       if(has("ie") || has("mozilla")){        // NOTE: checking in Safari messes things up
-               // priority is 90 to run ahead of parser priority of 100
-               ready(90, function(){
-                       // summary:
-                       //              Detects if we are in high-contrast mode or not
+       /*=====
+       return function(){
+               // summary:
+               //              Test if computer is in high contrast mode, and sets `dijit_a11y` flag on `<body>` if it is.
+               //              Deprecated, use ``dojo/hccss`` instead.
+       };
+       =====*/
 
-                       // create div for testing if high contrast mode is on or images are turned off
-                       var div = domConstruct.create("div",{
-                               id: "a11yTestNode",
-                               style:{
-                                       cssText:'border: 1px solid;'
-                                               + 'border-color:red green;'
-                                               + 'position: absolute;'
-                                               + 'height: 5px;'
-                                               + 'top: -999px;'
-                                               + 'background-image: url("' + (config.blankGif || require.toUrl("dojo/resources/blank.gif")) + '");'
-                               }
-                       }, win.body());
+       // Priority is 90 to run ahead of parser priority of 100.   For 2.0, remove the ready() call and instead
+       // change this module to depend on dojo/domReady!
+       ready(90, function(){
+               if(has("highcontrast")){
+                       domClass.add(win.body(), "dijit_a11y");
+               }
+       });
 
-                       // test it
-                       var cs = domStyle.getComputedStyle(div);
-                       if(cs){
-                               var bkImg = cs.backgroundImage;
-                               var needsA11y = (cs.borderTopColor == cs.borderRightColor) || (bkImg != null && (bkImg == "none" || bkImg == "url(invalid-url:)" ));
-                               if(needsA11y){
-                                       domClass.add(win.body(), "dijit_a11y");
-                               }
-                               if(has("ie")){
-                                       div.outerHTML = "";             // prevent mixed-content warning, see http://support.microsoft.com/kb/925014
-                               }else{
-                                       win.body().removeChild(div);
-                               }
-                       }
-               });
-       }
+       return has;
 });