HanvonAttendanceService/device-api-dump/resources_js_notify.js

15 lines
313 B
JavaScript

function notify(text, sticky) {
$().toastmessage('showToast',{
text: text,
sticky : sticky || false,
position : 'top-right',
closeText: ''
});
}
function check_permission() {
if (typeof ($.cookie("pwd")) == "undefined"){
location.href = "index.html"
}
}