Skip to content

Commit

Permalink
use dojo/Deferred not dojo/_base/Deferred, refs #4
Browse files Browse the repository at this point in the history
  • Loading branch information
wkeese committed Feb 2, 2013
1 parent f972161 commit dcfed0f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion _HasDropDown.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
define([
"dojo/_base/declare", // declare
"dojo/_base/Deferred",
"dojo/Deferred",
"dojo/dom", // dom.isDescendant
"dojo/dom-attr", // domAttr.set
"dojo/dom-class", // domClass.add domClass.contains domClass.remove
Expand Down
2 changes: 1 addition & 1 deletion _editor/RichText.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ define([
"dojo/_base/array", // array.forEach array.indexOf array.some
"dojo/_base/config", // config
"dojo/_base/declare", // declare
"dojo/_base/Deferred", // Deferred
"dojo/Deferred", // Deferred
"dojo/dom", // dom.byId
"dojo/dom-attr", // domAttr.set or get
"dojo/dom-class", // domClass.add domClass.remove
Expand Down
5 changes: 2 additions & 3 deletions form/_FormSelectWidget.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
define([
"dojo/_base/array", // array.filter array.forEach array.map array.some
"dojo/aspect",
"dojo/_base/Deferred",
"dojo/aspect", // aspect.after
"dojo/Deferred",
"dojo/data/util/sorter", // util.sorter.createSortFunction
"dojo/_base/declare", // declare
"dojo/dom", // dom.setSelectable
Expand All @@ -13,7 +12,7 @@ define([
"dojo/when",
"dojo/store/util/QueryResults",
"./_FormValueWidget"
], function(array, aspect, Deferred, aspect, sorter, declare, dom, domClass, kernel, lang, query, when,
], function(array, aspect, Deferred, sorter, declare, dom, domClass, kernel, lang, query, when,
QueryResults, _FormValueWidget){

// module:
Expand Down
2 changes: 1 addition & 1 deletion layout/ContentPane.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ define([
"dojo/i18n!../nls/loading",
"dojo/_base/array", // array.forEach
"dojo/_base/declare", // declare
"dojo/_base/Deferred", // Deferred
"dojo/Deferred", // Deferred
"dojo/dom", // dom.byId
"dojo/dom-attr", // domAttr.attr
"dojo/dom-construct", // empty()
Expand Down

0 comments on commit dcfed0f

Please sign in to comment.