Delete Timer messages

master
Tanner Collin 1 year ago
parent 7fadeabf33
commit 443921c30e
  1. 7
      messagegui/app.js

@ -13,7 +13,7 @@
/* For example for maps:
// a message
require("messages").pushMessage({"t":"add","id":1575479849,"src":"Hangouts","title":"A Name","body":"message contents"})
require("messages").pushMessage({"t":"add","id":1575479849,"src":"Clock","title":"Timer","body":"test"})
// maps
require("messages").pushMessage({"t":"add","id":1,"src":"Maps","title":"0 yd - High St","body":"Campton - 11:48 ETA","img":"GhqBAAAMAAAHgAAD8AAB/gAA/8AAf/gAP/8AH//gD/98B//Pg/4B8f8Afv+PP//n3/f5//j+f/wfn/4D5/8Aef+AD//AAf/gAD/wAAf4AAD8AAAeAAADAAA="});
// call
@ -359,6 +359,11 @@ function showMessage(msgid) {
function checkMessages(options) {
options=options||{};
if (MESSAGES.length && MESSAGES[0].title == "Timer") {
MESSAGES.pop(0);
return load();
}
// If no messages, just show 'no messages' and return
if (!MESSAGES.length) {
if (!options.clockIfNoMsg) return E.showPrompt(/*LANG*/"No Messages",{

Loading…
Cancel
Save