##// END OF EJS Templates
js: organized and updated JS packages....
js: organized and updated JS packages. - moved certain embeded files to be tracked via node2nix - bumped few libraries, jquery to 1.11.3 - bumped moustetrap to 1.6.1

File last commit:

r727:912a8f06 default
r2123:f43bc711 default
Show More
rhodecode-toggle.js
15 lines | 517 B | application/javascript | JavascriptLexer
Polymer({
is: 'rhodecode-toggle',
properties: {
noSpinner: { type: Boolean, value: false, reflectToAttribute:true},
tooltipText: { type: String, value: "Click to toggle", reflectToAttribute:true},
checked: { type: Boolean, value: false, reflectToAttribute:true},
active: { type: Boolean, value: false, reflectToAttribute:true, notify:true}
},
shouldShow: function(){
return !this.noSpinner
},
labelStatus: function(isActive){
return this.checked? 'Enabled' : "Disabled"
}
});