From f0cfe83e3725f9a3928da97a6e3085e79cb25309 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 18 Mar 2013 10:26:24 +0400 Subject: upgrade dojo to 1.8.3 (refs #570) --- lib/dijit/hccss.js.uncompressed.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 lib/dijit/hccss.js.uncompressed.js (limited to 'lib/dijit/hccss.js.uncompressed.js') diff --git a/lib/dijit/hccss.js.uncompressed.js b/lib/dijit/hccss.js.uncompressed.js new file mode 100644 index 000000000..9e0ac88e8 --- /dev/null +++ b/lib/dijit/hccss.js.uncompressed.js @@ -0,0 +1,23 @@ +define("dijit/hccss", ["dojo/dom-class", "dojo/hccss", "dojo/ready", "dojo/_base/window"], function(domClass, has, ready, win){ + + // module: + // dijit/hccss + + /*===== + return function(){ + // summary: + // Test if computer is in high contrast mode, and sets `dijit_a11y` flag on `` if it is. + // Deprecated, use ``dojo/hccss`` instead. + }; + =====*/ + + // 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"); + } + }); + + return has; +}); -- cgit v1.2.3