Skip to content

Commit

Permalink
issue/1966: minification fixes (#1971)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverfoster authored Feb 20, 2018
1 parent 2d680bd commit 094a133
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
5 changes: 1 addition & 4 deletions grunt/config/uglify.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,7 @@ module.exports = function (grunt, options) {
src: ['*.js', '!*.min.js'],
dest: '<%= outputdir %>'
}
],
options: {
ie8: true
}
]
}
}
}
6 changes: 3 additions & 3 deletions src/core/js/views/notifyView.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ define([
var NotifyView = Backbone.View.extend({

className: function() {
let classes = 'notify ';
var classes = 'notify ';
classes += (this.model.get('_classes') || '');
return classes;
},

disableAnimation: false,

escapeKeyAttached: false,

initialize: function() {
Expand Down Expand Up @@ -194,7 +194,7 @@ define([

this.subView = this.model.get("_view");
if (!this.subView) return;

this.$(".notify-popup-content-inner").append(this.subView.$el);

},
Expand Down

0 comments on commit 094a133

Please sign in to comment.