FIX: Incorrect variable.

This commit is contained in:
Guo Xiang Tan 2016-11-18 12:49:42 +08:00
parent 00c0410fc7
commit 8cc64cd05b
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ export default Ember.Component.extend({
// Android is dodgy, touchend often will not fire // Android is dodgy, touchend often will not fire
// https://code.google.com/p/android/issues/detail?id=19827 // https://code.google.com/p/android/issues/detail?id=19827
if (!this.isAndroid) { if (!isAndroid) {
$(document).on('touchstart.quote-button', () => { $(document).on('touchstart.quote-button', () => {
this._isTouchInProgress = true; this._isTouchInProgress = true;
return true; return true;