start to rework music tabs
This commit is contained in:
parent
d09b8462c4
commit
387550a5cf
12 changed files with 566 additions and 1555 deletions
|
@ -67,7 +67,7 @@
|
|||
currentOptions.history = currentOptions.history && $.mobile.ajaxEnabled && $.mobile.hashListeningEnabled;
|
||||
|
||||
this._on(this.document, {
|
||||
"vmousedown": "_handleDocumentVmousedown"
|
||||
"mousedown": "_handleDocumentVmousedown"
|
||||
});
|
||||
|
||||
// Define instance variables
|
||||
|
@ -104,7 +104,7 @@
|
|||
._ui.focusElement = this._ui.container;
|
||||
|
||||
// Event handlers
|
||||
this._on(this._ui.screen, { "vclick": "_eatEventAndClose" });
|
||||
this._on(this._ui.screen, { "click": "_eatEventAndClose" });
|
||||
this._on(this.window, {
|
||||
orientationchange: $.proxy(this, "_handleWindowOrientationchange"),
|
||||
resize: $.proxy(this, "_handleWindowResize"),
|
||||
|
|
|
@ -135,7 +135,7 @@
|
|||
});
|
||||
|
||||
slider.bind("vmousedown", $.proxy(this._sliderVMouseDown, this))
|
||||
.bind("vclick", false);
|
||||
.bind("click", false);
|
||||
|
||||
// We have to instantiate a new function object for the unbind to work properly
|
||||
// since the method itself is defined in the prototype (causing it to unbind everything)
|
||||
|
@ -158,7 +158,7 @@
|
|||
"keyup": "_handleKeyup"
|
||||
});
|
||||
|
||||
this.handle.bind("vclick", false);
|
||||
this.handle.bind("click", false);
|
||||
|
||||
this._handleFormReset();
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue