Fixed nonregistered model bug in wiget manager

Jonathan Frederic 12 years ago committed by Jonathan Frederic
parent 3c866ea412
commit 73380ca442

@ -78,7 +78,7 @@
WidgetManager.prototype.get_model = function (widget_id) {
var model = this._model_instances[widget_id];
if (model.id == widget_id) {
if (model !== undefined && model.id == widget_id) {
return model;
}
return null;

Loading…
Cancel
Save