mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-03 09:49:30 +02:00
Fix level=error errors
This commit is contained in:
parent
086f3b8780
commit
5ab1ed2e93
2 changed files with 5 additions and 4 deletions
|
@ -80,7 +80,7 @@ var SearchRow = {
|
|||
input = '';
|
||||
}
|
||||
|
||||
widget = types[ruleType].widget;
|
||||
var widget = types[ruleType].widget;
|
||||
|
||||
var inputNode = document.createElement(widget['0']);
|
||||
inputNode.id = 'rule_' + ruleNumber + '_input';
|
||||
|
@ -94,6 +94,7 @@ var SearchRow = {
|
|||
case 'select':
|
||||
jQuery.each(widget['1'], function(i) {
|
||||
var option = document.createElement('option');
|
||||
var realvalue = 0;
|
||||
if ( isNaN(parseInt(widget['1'][i])) ) {
|
||||
realvalue = i;
|
||||
}
|
||||
|
@ -143,7 +144,7 @@ var SearchRow = {
|
|||
operatorNode.id = 'rule_' + ruleNumber + '_operator';
|
||||
operatorNode.name = 'rule_' + ruleNumber + '_operator';
|
||||
|
||||
basetype = types[ruleType].type;
|
||||
var basetype = types[ruleType].type;
|
||||
operatorNode.className = 'operator' + basetype;
|
||||
|
||||
var opts = basetypes[basetype];
|
||||
|
|
|
@ -236,7 +236,7 @@ input[type=button]:focus:active, input[type=submit]:focus:active {
|
|||
Rightbar
|
||||
***********************************************/
|
||||
#rightbar {
|
||||
//background-color: rgba(0,0,0,0.15);
|
||||
/* background-color: rgba(0,0,0,0.15); */
|
||||
background-color: #222;
|
||||
border-color: gba(0,0,0,0.15);
|
||||
-webkit-box-shadow: 0 0 5px rgba(255,255,255,0.05);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue