Skip to content

Commit 50d2ab6

Browse files
Marcosdg3Marcosdg3-cnet
authored andcommitted
Add production built files
1 parent d7151c1 commit 50d2ab6

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

demo/angular-ui-notification.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-ui-notification.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@ angular.module('ui-notification').provider('Notification', function() {
7070
// load it via $http only if it isn't default template and template isn't exist in template cache
7171
// cache:true means cache it for later access.
7272
$http.get(args.template,{cache: true})
73-
.then(processNotificationTemplate)
73+
.then(function(response){
74+
processNotificationTemplate(response.data);
75+
})
7476
.catch(function(data){
7577
throw new Error('Template ('+args.template+') could not be loaded. ' + data);
7678
});

dist/angular-ui-notification.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)