From 7cf26a7446099aacbc2653102b7fd27d872e295a Mon Sep 17 00:00:00 2001 From: Michael Jennings Date: Sun, 12 Apr 2015 18:07:01 +0100 Subject: [PATCH] Updated the notification paths in the config --- config/notifier.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config/notifier.php b/config/notifier.php index 55ad064..87df75c 100644 --- a/config/notifier.php +++ b/config/notifier.php @@ -27,11 +27,11 @@ 'growl' => [ 'css' => [ - '/css/jquery.growl.css' + 'css/jquery.growl.css' ], 'js' => [ - '/js/jquery.growl.js' + 'js/jquery.growl.js' ] ], @@ -65,12 +65,12 @@ /** * The view to render a single notification. */ - 'notification' => 'notifier::growl.notification', + 'notification' => 'path/to/views/growl/notification.php', /** * The view to renderer all of the rendered noticiations. */ - 'template' => 'notifier::growl.default', + 'template' => 'path/to/views/growl/default.php', ], @@ -79,12 +79,12 @@ /** * The view to render a single notification. */ - 'notification' => 'notifier::alertify.notification', + 'notification' => 'path/to/views/alertify/notification.php', /** * The view to renderer all of the rendered noticiations. */ - 'template' => 'notifier::alertify.default', + 'template' => 'path/to/views/alertify/default.php', ]