mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 20:44:00 +02:00
added more import code in ui.
some jshint cleanup.
This commit is contained in:
@@ -19,13 +19,13 @@ NzbDrone.Shared.NotificationModel = Backbone.Model.extend({
|
||||
return "icon";
|
||||
}
|
||||
|
||||
if (this.get('level') == 'info') {
|
||||
if (this.get('level') === 'info') {
|
||||
return "icon-info-sign";
|
||||
}
|
||||
else if (this.get('level') == 'success') {
|
||||
else if (this.get('level') === 'success') {
|
||||
return 'icon-ok-sign';
|
||||
}
|
||||
else if (this.get('level') == 'error') {
|
||||
else if (this.get('level') === 'error') {
|
||||
return 'icon-warning-sign';
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user