1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update globalize

This commit is contained in:
Luke Pulverenti 2015-08-05 21:21:18 -04:00
parent 3d3df5717d
commit 7fb95d0419
21 changed files with 142 additions and 90 deletions

View file

@ -109,8 +109,10 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
// to emulate native checkbox, (de-)activations from a user interaction fire
// 'change' events
_userActivate: function(active) {
this.active = active;
this.fire('change');
if (this.active !== active) {
this.active = active;
this.fire('change');
}
},
_eventSourceIsPrimaryInput: function(event) {