summaryrefslogtreecommitdiff
path: root/smarttv-client/Javascript/Notify.js
diff options
context:
space:
mode:
authorthlo <smarttv640@gmail.com>2013-09-29 16:09:19 +0200
committerthlo <t.lohmar@gmx.de>2013-09-29 16:09:19 +0200
commit4148888336af42a0ddb7a2e1e9dbc70703a2ba71 (patch)
tree75e508fdd6d263b9b247e6d83346d131439195db /smarttv-client/Javascript/Notify.js
parentc1d18541100f07b5ec2a0baf894ae9d870866c5f (diff)
downloadvdr-plugin-smarttvweb-4148888336af42a0ddb7a2e1e9dbc70703a2ba71.tar.gz
vdr-plugin-smarttvweb-4148888336af42a0ddb7a2e1e9dbc70703a2ba71.tar.bz2
* Fixes in Comm handling.
* Fixes in Timer menu. * Fixes in Image Viewer. * Widget Code Improvements (HTTP transaction handlings)
Diffstat (limited to 'smarttv-client/Javascript/Notify.js')
-rw-r--r--smarttv-client/Javascript/Notify.js5
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("");
};