mirror of https://github.com/espruino/BangleApps
8 lines
225 B
JavaScript
8 lines
225 B
JavaScript
|
exports.hide = function() {
|
||
|
if (!global.WIDGETS||!WIDGETS["messages"]) return;
|
||
|
WIDGETS["messages"].hide();
|
||
|
}
|
||
|
exports.show = function() {
|
||
|
if (!global.WIDGETS||!WIDGETS["messages"]) return;
|
||
|
WIDGETS["messages"].show();
|
||
|
}
|