Skip to content

Commit

Permalink
pass null to create 'all' widgets
Browse files Browse the repository at this point in the history
  • Loading branch information
green3g committed Feb 11, 2017
1 parent 5268fd3 commit 2a7f35a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion viewer/js/viewer/_WidgetsMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,12 @@ define([
}
if (this.layoutDeferred) {
promiseAll([this.mapDeferred, this.layoutDeferred])
.then(lang.hitch(this, 'createWidgets'));
.then(lang.hitch(this, 'createWidgets', null));
}
},

createWidgets: function (widgetTypes) {
debugger;
var widgets = [],
paneWidgets;

Expand Down

0 comments on commit 2a7f35a

Please sign in to comment.