mirror of
https://github.com/Doodle3D/doodle3d-client.git
synced 2024-11-22 09:17:56 +01:00
More consistent button behaviour
This commit is contained in:
parent
bc4426faba
commit
8b229c0aff
@ -182,13 +182,11 @@ function initButtonBehavior() {
|
|||||||
if (clientInfo.isSmartphone) {
|
if (clientInfo.isSmartphone) {
|
||||||
btnInfo.addClass("disabled");
|
btnInfo.addClass("disabled");
|
||||||
} else {
|
} else {
|
||||||
btnInfo.mouseup(function(e) {
|
function onBtnInfo(e) {
|
||||||
e.preventDefault();
|
|
||||||
console.log("btnInfo mouse up");
|
|
||||||
helpTours.startTour(helpTours.WELCOMETOUR);
|
helpTours.startTour(helpTours.WELCOMETOUR);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
enableButton(btnInfo, onBtnInfo);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function stopPrint() {
|
function stopPrint() {
|
||||||
|
@ -131,14 +131,14 @@ function disableDragging() {
|
|||||||
function enableButton(elem, handler) {
|
function enableButton(elem, handler) {
|
||||||
//var elem = $('#'+domId);
|
//var elem = $('#'+domId);
|
||||||
elem.removeClass("disabled");
|
elem.removeClass("disabled");
|
||||||
elem.unbind('click');
|
elem.unbind('onButtonClick');
|
||||||
elem.bind('click', handler);
|
elem.bind('onButtonClick', handler);
|
||||||
}
|
}
|
||||||
|
|
||||||
function disableButton(elem) {
|
function disableButton(elem) {
|
||||||
//var elem = $('#'+domId);
|
//var elem = $('#'+domId);
|
||||||
elem.addClass("disabled");
|
elem.addClass("disabled");
|
||||||
elem.unbind('click');
|
elem.unbind('onButtonClick');
|
||||||
}
|
}
|
||||||
|
|
||||||
function showOrHideThermo() {
|
function showOrHideThermo() {
|
||||||
|
@ -146,15 +146,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*#btnAddOpen {
|
|
||||||
position: absolute;
|
|
||||||
top: 370px;
|
|
||||||
left: 60px;
|
|
||||||
z-index: 1000;
|
|
||||||
width: 200%;
|
|
||||||
display: none;
|
|
||||||
}*/
|
|
||||||
|
|
||||||
.buttonGroup {
|
.buttonGroup {
|
||||||
/*background-color: white;*/
|
/*background-color: white;*/
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
|
Loading…
Reference in New Issue
Block a user