Skip to content

Commit

Permalink
fix has("ie"), refs #12672 !strict
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.dojotoolkit.org/src/dojo/trunk@24353 560b804f-0ae3-0310-86f3-f6aa0a117693
  • Loading branch information
wkeese committed Apr 15, 2011
1 parent 5aba804 commit 355e304
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion _base/lang.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,6 @@ define(["./kernel", "../has", "./sniff"], function(dojo, has){
};
//>>excludeEnd("webkitMobile");

console.log("defining dojo._toArray, d.isIE = " + d.isIE);
dojo._toArray =
//>>excludeStart("webkitMobile", kwArgs.webkitMobile);
d.isIE ? function(obj){
Expand Down
2 changes: 1 addition & 1 deletion _base/sniff.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ define(["./kernel", "../has"], function(dojo, has){
has.add("mac ", dojo.isMac = isMac );
has.add("safari", dojo.isSafari= isSafari);
has.add("mozilla ", dojo.isMozilla = dojo.isMoz = isMozilla );
has.add("ie ", dojo.isIE = isIE );
has.add("ie", dojo.isIE = isIE );
has.add("ff", dojo.isFF= isFF);
has.add("quirks", dojo.isQuirks= isQuirks);

Expand Down
2 changes: 1 addition & 1 deletion _base/xhr.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
define(["./kernel", "../has", "require", "./Deferred", "./json", "./lang", "./query"], function(dojo, has, require){
define(["./kernel", "../has", "../sniff", "require", "./Deferred", "./json", "./lang", "./query"], function(dojo, has, require){
// module:
// dojo/_base.xhr
// summary:
Expand Down

0 comments on commit 355e304

Please sign in to comment.