diff options
Diffstat (limited to 'smarttv-client/Javascript/Notify.js')
-rw-r--r-- | smarttv-client/Javascript/Notify.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/smarttv-client/Javascript/Notify.js b/smarttv-client/Javascript/Notify.js index a980af5..dcb18ae 100644 --- a/smarttv-client/Javascript/Notify.js +++ b/smarttv-client/Javascript/Notify.js @@ -1,5 +1,5 @@ var Notify = {
- notifyOlHandler : null
+ notifyOlHandler : null
};
@@ -11,6 +11,7 @@ Notify.init = function () { Notify.showNotify = function (msg, timer) {
+
$("#notify").text(msg);
if (timer == true)
this.notifyOlHandler.show();
@@ -24,6 +25,6 @@ Notify.handlerShowNotify = function () { Notify.handlerHideNotify = function () {
$("#notify").hide();
- $("#notify").text("");
+ $("#notify").text("");
};
|