Skip to content

Commit

Permalink
Updated the notification paths in the config
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljennings committed Apr 12, 2015
1 parent f0433fb commit 7cf26a7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions config/notifier.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
'growl' => [

'css' => [
'/css/jquery.growl.css'
'css/jquery.growl.css'
],

'js' => [
'/js/jquery.growl.js'
'js/jquery.growl.js'
]

],
Expand Down Expand Up @@ -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',

],

Expand All @@ -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',

]

Expand Down

0 comments on commit 7cf26a7

Please sign in to comment.