mirror of
https://github.com/danbulant/phpdroid
synced 2026-05-19 04:08:51 +00:00
11 lines
442 B
JavaScript
11 lines
442 B
JavaScript
if (typeof mainScriptIncluded == 'undefined') {
|
|
console.log("Main.js is missing, some functions may fail.");
|
|
}
|
|
if(typeof snackbarScriptIncluded == 'undefined'){
|
|
snackbarScriptIncluded = true;
|
|
function snackbar(text,time){
|
|
parent.postMessage("snackbar:"+text+"time:"+time, "*");
|
|
console.log("Beaming information into OS to show toast with text '"+text+"' for "+time+" miliseconds");
|
|
}
|
|
sendEvent("toast:loaded");
|
|
}
|