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

fix input event

This commit is contained in:
Luke Pulverenti 2016-06-05 00:49:29 -04:00
parent b33a3302ed
commit 4c99143f26
3 changed files with 21 additions and 16 deletions

View file

@ -1,9 +1,10 @@
define(['css!./emby-button'], function (layoutManager, browser) { define(['browser', 'css!./emby-button'], function (browser) {
var EmbyButtonPrototype = Object.create(HTMLButtonElement.prototype); var EmbyButtonPrototype = Object.create(HTMLButtonElement.prototype);
function animateButton(e) { function animateButton(e) {
var btn = this;
var div = document.createElement('div'); var div = document.createElement('div');
div.classList.add('ripple-effect'); div.classList.add('ripple-effect');
@ -16,9 +17,9 @@
div.style.top = offsetY + 'px'; div.style.top = offsetY + 'px';
} }
this.appendChild(div); btn.appendChild(div);
div.addEventListener("animationend", function() { div.addEventListener("animationend", function () {
div.parentNode.removeChild(div); div.parentNode.removeChild(div);
}, false); }, false);
} }
@ -46,9 +47,12 @@
this.setAttribute('data-embybutton', 'true'); this.setAttribute('data-embybutton', 'true');
this.addEventListener('keydown', onKeyDown); this.addEventListener('keydown', onKeyDown);
this.addEventListener('mousedown', onMouseDown); if (browser.safari) {
this.addEventListener('touchstart', animateButton); this.addEventListener('click', animateButton);
//this.addEventListener('click', animateButton); } else {
this.addEventListener('mousedown', onMouseDown);
//this.addEventListener('touchstart', animateButton);
}
}; };
document.registerElement('emby-button', { document.registerElement('emby-button', {

View file

@ -8,16 +8,18 @@
var descriptor = Object.getOwnPropertyDescriptor(HTMLInputElement.prototype, 'value'); var descriptor = Object.getOwnPropertyDescriptor(HTMLInputElement.prototype, 'value');
var baseSetMethod = descriptor.set; if (descriptor.configurable) {
descriptor.set = function (value) { var baseSetMethod = descriptor.set;
baseSetMethod.call(this, value); descriptor.set = function (value) {
this.dispatchEvent(new CustomEvent('valueset', { baseSetMethod.call(this, value);
bubbles: false, this.dispatchEvent(new CustomEvent('valueset', {
cancelable: false bubbles: false,
})); cancelable: false
} }));
}
Object.defineProperty(HTMLInputElement.prototype, 'value', descriptor); Object.defineProperty(HTMLInputElement.prototype, 'value', descriptor);
}
} }
EmbyInputPrototype.createdCallback = function () { EmbyInputPrototype.createdCallback = function () {

View file

@ -1479,7 +1479,6 @@ var AppInfo = {};
} }
AppInfo.supportsExternalPlayers = true; AppInfo.supportsExternalPlayers = true;
AppInfo.enableAppLayouts = true;
if (isCordova) { if (isCordova) {
AppInfo.enableAppLayouts = true; AppInfo.enableAppLayouts = true;