Fixed nonregistered model bug in wiget manager

This commit is contained in:
Jonathan Frederic 2013-12-18 14:46:25 -08:00 committed by Jonathan Frederic
parent 3c866ea412
commit 73380ca442

View File

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