Skip to content

Commit

Permalink
Fixes #13035. Within dijit, replaced define(["dojo"] with "dojo/_base…
Browse files Browse the repository at this point in the history
…/kernel" et al. !strict

git-svn-id: http://svn.dojotoolkit.org/src/dijit/trunk@25106 560b804f-0ae3-0310-86f3-f6aa0a117693
  • Loading branch information
Douglas Hays committed May 22, 2011
1 parent 74956d6 commit dcece18
Show file tree
Hide file tree
Showing 149 changed files with 1,606 additions and 785 deletions.
10 changes: 9 additions & 1 deletion BackgroundIframe.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
define(["dojo"], function(dojo){
define([
"dojo/_base/kernel", // dojo.config
"dojo/_base/connect", // dojo.connect dojo.disconnect
"dojo/_base/html", // dojo.create dojo.style
"dojo/_base/lang", // dojo.extend
"dojo/_base/sniff", // dojo.isIE dojo.isMoz dojo.isQuirks
"dojo/_base/url", // dojo.moduleUrl
"dojo/_base/window" // dojo.doc.createElement
], function(dojo){

// module:
// dijit/BackgroundIFrame
Expand Down
12 changes: 10 additions & 2 deletions Calendar.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
define([
"dojo",
"dojo/_base/kernel", // dojo.deprecated
".",
"dojo/date",
"dojo/date/locale",
"./CalendarLite",
"./_CssStateMixin",
"./hccss",
"./form/DropDownButton"], function(dojo, dijit){
"./form/DropDownButton",
"dojo/_base/array", // dojo.map
"dojo/_base/connect", // dojo.keys
"dojo/_base/declare", // dojo.declare
"dojo/_base/event", // dojo.stopEvent
"dojo/_base/html", // dojo.addClass dojo.attr dojo.hasClass dojo.removeClass dojo.toggleClass
"dojo/_base/lang", // dojo.hitch
"dojo/_base/sniff" // dojo.isIE
], function(dojo, dijit){

// module:
// dijit/Calendar
Expand Down
Loading

0 comments on commit dcece18

Please sign in to comment.