Reformat WebUI code

This commit is contained in:
Chocobo1 2018-12-12 12:23:56 +08:00
parent ba32525b45
commit d0886f8db0
No known key found for this signature in database
GPG key ID: 210D9C873253A68C
8 changed files with 175 additions and 172 deletions

View file

@ -644,20 +644,20 @@ window.addEvent('load', function() {
var addSearchPanel = function() {
new MochaUI.Panel({
id : 'SearchPanel',
title : 'Search',
header : false,
padding : {
top : 0,
right : 0,
bottom : 0,
left : 0
id: 'SearchPanel',
title: 'Search',
header: false,
padding: {
top: 0,
right: 0,
bottom: 0,
left: 0
},
loadMethod : 'xhr',
contentURL : 'search.html',
loadMethod: 'xhr',
contentURL: 'search.html',
content: '',
column : 'searchTabColumn',
height : null
column: 'searchTabColumn',
height: null
});
};