From 552b423b66699f46b8f5d3aae3ba1287ae695165 Mon Sep 17 00:00:00 2001
From: Piotr Dabrowski
Date: Tue, 20 Aug 2013 15:22:33 +0200
Subject: [PATCH] [ExercisePlanner] updated ExercisePlanner sources
Change-Id: I2e37e111e12686861d147f3980a9cd4f16eaf4d4
---
js/UI.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/js/UI.js b/js/UI.js
index c4d672b..acc3060 100644
--- a/js/UI.js
+++ b/js/UI.js
@@ -340,7 +340,7 @@ function UI() {
self.clearTabbars();
});
- $('#startStop').on('tap', function () {
+ $('#startStop').on('click', function () {
self.app.appStartStop();
});
@@ -460,7 +460,7 @@ function UI() {
});
$('#customExercises').on('pageinit', function (page, options) {
- $('#btnNewExercise').on('vmousedown', function (e) {
+ $('#btnNewExercise').on('click', function (e) {
e.preventDefault();
e.stopPropagation();
if ($(this).data('disabled') !== true) {
--
2.7.4