24 lines
637 B
JavaScript
24 lines
637 B
JavaScript
|
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;
|
||
|
});
|