Changeset View
Changeset View
Standalone View
Standalone View
webroot/rsrc/js/application/diff/ScrollObjective.js
| Show First 20 Lines • Show All 94 Lines • ▼ Show 20 Lines | setColor: function(color) { | ||||
| return this; | return this; | ||||
| }, | }, | ||||
| setTooltip: function(tip) { | setTooltip: function(tip) { | ||||
| var node = this._getIconObject().getNode(); | var node = this._getIconObject().getNode(); | ||||
| JX.Stratcom.addSigil(node, 'has-tooltip'); | JX.Stratcom.addSigil(node, 'has-tooltip'); | ||||
| JX.Stratcom.getData(node).tip = tip; | JX.Stratcom.getData(node).tip = tip; | ||||
| JX.Stratcom.getData(node).align = 'W'; | JX.Stratcom.getData(node).align = 'W'; | ||||
| JX.Stratcom.getData(node).size = 'auto'; | |||||
| return this; | return this; | ||||
| }, | }, | ||||
| show: function() { | show: function() { | ||||
| this._visible = true; | this._visible = true; | ||||
| return this; | return this; | ||||
| }, | }, | ||||
| Show All 11 Lines | |||||