summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorheeju Joo <heeju.joo@samsung.com>2013-10-30 17:30:38 +0900
committerheeju Joo <heeju.joo@samsung.com>2013-10-30 18:45:51 +0900
commit1df2fea980173cd73074eae463f3bc3c01e3b858 (patch)
tree278a4736f142c22c3184fdb604bd5be0c430fff2
parentb3e809012b277b14cd5c70f9e36c8dfec1a18a18 (diff)
downloadweb-ui-fw-1df2fea980173cd73074eae463f3bc3c01e3b858.tar.gz
web-ui-fw-1df2fea980173cd73074eae463f3bc3c01e3b858.tar.bz2
web-ui-fw-1df2fea980173cd73074eae463f3bc3c01e3b858.zip
datetimepicker: modify vlick event to click (N_SE-56430)
[Occurrence Process] after tap hold(touchstart) and dragged point within threshold and hold release(touchend). [Result] timepicker has been appeared, but IME doesn't go down and input has focus. [Cause] Maybe, the 'threshold' of 'vmouse' not correct in this cases.(maybe it 1.5 bigger than original points difference.) [Solution] So, we choose 'click' event instead of vclick to resolve this issue. It uses threshold of webkit and it operates correct. Change-Id: Id4f43622e111f6e6e4884f997b64aec473d2abb4
-rw-r--r--src/js/widgets/jquery.mobile.tizen.datetimepicker.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/widgets/jquery.mobile.tizen.datetimepicker.js b/src/js/widgets/jquery.mobile.tizen.datetimepicker.js
index 1e592517..d8b3d050 100644
--- a/src/js/widgets/jquery.mobile.tizen.datetimepicker.js
+++ b/src/js/widgets/jquery.mobile.tizen.datetimepicker.js
@@ -538,7 +538,7 @@ define( [
$(this.element).after( this.ui );
this._popup_open = false;
- this.ui.bind('vclick', function ( e ) {
+ this.ui.bind('click', function ( e ) {
obj._showDataSelector( obj, this, e.target );
});