Commit c80c6918 by Masaru Abe

clickイベントが何度も溜まる問題回避 onに変更

parent 2d2d44f3
......@@ -52,9 +52,29 @@ SHARE.openContentShare = function() {
//alert("SHARE.contentId:" + SHARE.contentId);
//$('#dlgContentShare').dialog( 'open' );
$("#dlgContentShare_close").click(SHARE.dlgContentShare_close_Click);
$("#dlgContentShare_ok").click(SHARE.dlgContentShare_ok_Click);
//bughuntでクリックイベントが溜まる問題の対応
//$("#dlgContentShare_close").click(SHARE.dlgContentShare_close_Click);
//$("#dlgContentShare_ok").click(SHARE.dlgContentShare_ok_Click);
$("#dlgContentShare_close").on({
'click touchend': function(ev){
SHARE.dlgContentShare_close_Click(ev);
return false;
},
'touchstart touchmove': function(){
return false;
}
});
$("#dlgContentShare_ok").on({
'click touchend': function(ev){
SHARE.dlgContentShare_ok_Click(ev);
return false;
},
'touchstart touchmove': function(){
return false;
}
});
COMMON.lockLayout();
$("#dlgContentShare").css('z-index', 102);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment