##// END OF EJS Templates
ux: show multiple tags/branches in changelog/summary instead of truncating
ux: show multiple tags/branches in changelog/summary instead of truncating

File last commit:

r778:6acda5b8 default
r786:6387ba98 default
Show More
rhodecode-toast.js
31 lines | 623 B | application/javascript | JavascriptLexer
Polymer({
is: 'rhodecode-toast',
properties: {
toasts: {
type: Array,
value: function(){
return []
}
}
},
observers: [
'_changedToasts(toasts.splices)'
],
ready: function(){
},
_changedToasts: function(newValue, oldValue){
this.$['p-toast'].notifyResize();
},
dismissNotifications: function(){
this.$['p-toast'].close();
},
handleClosed: function(){
this.splice('toasts', 0);
},
open: function(){
this.$['p-toast'].open();
},
_gettext: _gettext
});