summaryrefslogtreecommitdiff
path: root/lib/dijit/hccss.js.uncompressed.js
diff options
context:
space:
mode:
authorBarak Korren <[email protected]>2013-04-02 20:38:07 +0300
committerBarak Korren <[email protected]>2013-04-02 20:38:07 +0300
commit58a2577d48790c79adfd44bcfd662c980ce6cfe4 (patch)
tree523d814ea0b7b6f617fe515b186099c6e83fed72 /lib/dijit/hccss.js.uncompressed.js
parente470a273cf09562fb2f9c0c899002303f19c8d16 (diff)
parentcc332603431102a682feda22b9cf0093a29f0176 (diff)
Merge branch 'master' of https://github.com/gothfox/Tiny-Tiny-RSS.git
Diffstat (limited to 'lib/dijit/hccss.js.uncompressed.js')
-rw-r--r--lib/dijit/hccss.js.uncompressed.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/lib/dijit/hccss.js.uncompressed.js b/lib/dijit/hccss.js.uncompressed.js
deleted file mode 100644
index 9e0ac88e8..000000000
--- a/lib/dijit/hccss.js.uncompressed.js
+++ /dev/null
@@ -1,23 +0,0 @@
-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 `<body>` 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;
-});