mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
fix input event
This commit is contained in:
parent
b33a3302ed
commit
4c99143f26
@ -1,9 +1,10 @@
|
||||
define(['css!./emby-button'], function (layoutManager, browser) {
|
||||
define(['browser', 'css!./emby-button'], function (browser) {
|
||||
|
||||
var EmbyButtonPrototype = Object.create(HTMLButtonElement.prototype);
|
||||
|
||||
function animateButton(e) {
|
||||
|
||||
var btn = this;
|
||||
var div = document.createElement('div');
|
||||
|
||||
div.classList.add('ripple-effect');
|
||||
@ -16,9 +17,9 @@
|
||||
div.style.top = offsetY + 'px';
|
||||
}
|
||||
|
||||
this.appendChild(div);
|
||||
btn.appendChild(div);
|
||||
|
||||
div.addEventListener("animationend", function() {
|
||||
div.addEventListener("animationend", function () {
|
||||
div.parentNode.removeChild(div);
|
||||
}, false);
|
||||
}
|
||||
@ -46,9 +47,12 @@
|
||||
this.setAttribute('data-embybutton', 'true');
|
||||
|
||||
this.addEventListener('keydown', onKeyDown);
|
||||
this.addEventListener('mousedown', onMouseDown);
|
||||
this.addEventListener('touchstart', animateButton);
|
||||
//this.addEventListener('click', animateButton);
|
||||
if (browser.safari) {
|
||||
this.addEventListener('click', animateButton);
|
||||
} else {
|
||||
this.addEventListener('mousedown', onMouseDown);
|
||||
//this.addEventListener('touchstart', animateButton);
|
||||
}
|
||||
};
|
||||
|
||||
document.registerElement('emby-button', {
|
||||
|
@ -8,16 +8,18 @@
|
||||
|
||||
var descriptor = Object.getOwnPropertyDescriptor(HTMLInputElement.prototype, 'value');
|
||||
|
||||
var baseSetMethod = descriptor.set;
|
||||
descriptor.set = function (value) {
|
||||
baseSetMethod.call(this, value);
|
||||
this.dispatchEvent(new CustomEvent('valueset', {
|
||||
bubbles: false,
|
||||
cancelable: false
|
||||
}));
|
||||
}
|
||||
if (descriptor.configurable) {
|
||||
var baseSetMethod = descriptor.set;
|
||||
descriptor.set = function (value) {
|
||||
baseSetMethod.call(this, value);
|
||||
this.dispatchEvent(new CustomEvent('valueset', {
|
||||
bubbles: false,
|
||||
cancelable: false
|
||||
}));
|
||||
}
|
||||
|
||||
Object.defineProperty(HTMLInputElement.prototype, 'value', descriptor);
|
||||
Object.defineProperty(HTMLInputElement.prototype, 'value', descriptor);
|
||||
}
|
||||
}
|
||||
|
||||
EmbyInputPrototype.createdCallback = function () {
|
||||
|
@ -1479,7 +1479,6 @@ var AppInfo = {};
|
||||
}
|
||||
|
||||
AppInfo.supportsExternalPlayers = true;
|
||||
AppInfo.enableAppLayouts = true;
|
||||
|
||||
if (isCordova) {
|
||||
AppInfo.enableAppLayouts = true;
|
||||
|
Loading…
Reference in New Issue
Block a user