Override getPath() to push nextmatch's ID in

This commit is contained in:
Nathan Gray 2011-10-06 16:38:51 +00:00
parent c9e4d6801d
commit 08f5e28d00

View File

@ -641,6 +641,12 @@ var et2_nextmatch = et2_DOMWidget.extend(et2_IResizeable, {
}
return null;
},
getPath: function() {
var path = this._super.apply(this,arguments);
if(this.id) path.push(this.id);
return path;
}
});