##// END OF EJS Templates
dependencies: bumped test libraries....
dependencies: bumped test libraries. pytest==3.1.2 py==1.4.34 pytest-cov==2.5.1 pytest-sugar==0.8.0 pytest-runner==2.11.1 pytest-profiling==1.2.6

File last commit:

r727:912a8f06 default
r1863:7e505d15 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"
}
});