Skip to content

Commit

Permalink
Fixes #13898 reference _base from top-level module \!strict
Browse files Browse the repository at this point in the history
  • Loading branch information
peller committed Sep 14, 2011
1 parent a7f3ce3 commit c4514b0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion highlight.js
@@ -1 +1,3 @@
define(["./highlight/_base"], function(){});
define(["./highlight/_base"], function(highlight){
return highlight;
});
2 changes: 1 addition & 1 deletion highlight/_base.js
Expand Up @@ -14,7 +14,7 @@ define(["dojo", "dojox/main"], function(dojo, dojox){
//
};
=====*/
var dh = dojo.getObject("highlight", true, dojox),
var dh = dojo.getObject("dojox.highlight", true),
C_NUMBER_RE = '\\b(0x[A-Za-z0-9]+|\\d+(\\.\\d+)?)'
;
dh.languages = dh.languages || {};
Expand Down

0 comments on commit c4514b0

Please sign in to comment.