Changeset 426 for Dev/trunk/client/qed/widgets/ObjectBox.js
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk
- Property svn:ignore
-
old new 1 1 data 2 2 nbproject 3 node_modules
-
- Property svn:ignore
-
Dev/trunk/client
- Property svn:externals
-
old new 1 dojo http://svn.dojotoolkit.org/src/tags/release-1.8. 0/dojo2 dijit http://svn.dojotoolkit.org/src/tags/release-1.8. 0/dijit3 dojox http://svn.dojotoolkit.org/src/tags/release-1.8. 0/dojox4 util http://svn.dojotoolkit.org/src/tags/release-1.8. 0/util1 dojo http://svn.dojotoolkit.org/src/tags/release-1.8.3/dojo 2 dijit http://svn.dojotoolkit.org/src/tags/release-1.8.3/dijit 3 dojox http://svn.dojotoolkit.org/src/tags/release-1.8.3/dojox 4 util http://svn.dojotoolkit.org/src/tags/release-1.8.3/util
-
- Property svn:externals
-
Dev/trunk/client/qed/widgets/ObjectBox.js
r417 r426 43 43 line3Actions[action] = { 44 44 callback: lang.hitch(this, function(callback){ 45 this.value && callback(this.value);45 if ( this.value ) { callback(this.value); } 46 46 }, this.actions[action]), 47 47 properties: { … … 54 54 return line3Actions; 55 55 }, 56 _showInfoBox: function() { 57 alert(this.value.description); 58 }, 56 _showInfoBox: function() {}, 59 57 _setValueAttr: function(value) { 60 58 this.value = value;
Note: See TracChangeset
for help on using the changeset viewer.