mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 13:10:13 -07:00
Bootstrap 3
New: Updated UI New: Mobile browser support Fixed: /favicon.ico will return the favicon now
This commit is contained in:
parent
28fa264c69
commit
99f2b07a11
148 changed files with 2691 additions and 2054 deletions
|
@ -53,6 +53,7 @@ define(
|
|||
if (idleIcon) {
|
||||
icon.addClass(idleIcon);
|
||||
}
|
||||
|
||||
return this;
|
||||
};
|
||||
});
|
||||
|
|
|
@ -32,14 +32,22 @@ define(
|
|||
|
||||
var controlGroup = input.parents('.form-group');
|
||||
|
||||
if(controlGroup.length ===0){
|
||||
if(controlGroup.length === 0) {
|
||||
controlGroup = input.parent();
|
||||
}
|
||||
else{
|
||||
controlGroup.find('.controls').append('<span class="help-inline error-message">' + error.errorMessage + '</span>');
|
||||
var inputGroup = controlGroup.find('.input-group');
|
||||
|
||||
if (inputGroup.length === 0) {
|
||||
controlGroup.append('<span class="help-inline error-message">' + error.errorMessage + '</span>');
|
||||
}
|
||||
|
||||
else {
|
||||
inputGroup.parent().append('<span class="help-block error-message">' + error.errorMessage + '</span>');
|
||||
}
|
||||
}
|
||||
|
||||
controlGroup.addClass('error');
|
||||
controlGroup.addClass('has-error');
|
||||
|
||||
return controlGroup.find('.help-inline').text();
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue