Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/notifications.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2015-09-15 14:59:55 +0300
committerJoas Schilling <nickvergessen@owncloud.com>2015-09-15 14:59:55 +0300
commit4b6d38b9722fa1991572fa1e02fb28a025eb91f2 (patch)
tree2e22770d865f45893e1eace8213894a21cef6867 /js/notification.js
parentd94c0cfe94d5b8af522a30f1c63b1e5449804555 (diff)
Fix image paths
Diffstat (limited to 'js/notification.js')
-rw-r--r--js/notification.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/notification.js b/js/notification.js
index 85dbc74..4156f96 100644
--- a/js/notification.js
+++ b/js/notification.js
@@ -101,7 +101,7 @@
// TODO create event handler on click for given action type
});
el.append(actions);
- el.append('<div style="display: none;" class="notification-delete"><img class="svg" alt="Dismiss" src="/core/img/actions/close.svg"></div>');
+ el.append('<div style="display: none;" class="notification-delete"><img class="svg" alt="Dismiss" src="' + OC.imagePath('core', 'actions/close') + '"></div>');
return el;
},