You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TODO: Remove core4.2 backward compatibility `PageModified` js function
///////////////////////////////////////////////////////////////////////////////////////////////////// Backward compatibility functions// TODO: Remove core4.2 backward compatibility `PageModified` js function// Remove when Jeedom 4.2 is no longer supported// `jmqtt.isPageModified` -> `jeeFrontEnd.modifyWithoutSave`// `jmqtt.setPageModified` -> `jeeFrontEnd.modifyWithoutSave = true`// `jmqtt.unsetPageModified` -> `jeeFrontEnd.modifyWithoutSave = false`// labels: workarround, core4.2, javascript// Handle get modifyWithoutSave flag in jeeFrontEnd or windowjmqtt.isPageModified=function(){returnjeeFrontEnd.modifyWithoutSave||window.modifyWithoutSave;}// Handle set modifyWithoutSave flag in jeeFrontEnd and windowjmqtt.setPageModified=function(){jeeFrontEnd.modifyWithoutSave=true;window.modifyWithoutSave=true;}// Handle clear modifyWithoutSave flag in jeeFrontEnd and windowjmqtt.unsetPageModified=function(){jeeFrontEnd.modifyWithoutSave=false;window.modifyWithoutSave=false;}
The text was updated successfully, but these errors were encountered:
jMQTT/desktop/js/jMQTT.functions.js
Line 25 in 68f8470
The text was updated successfully, but these errors were encountered: