minor reformatting
This commit is contained in:
parent
ee1d50283f
commit
0fced02dda
1 changed files with 10 additions and 16 deletions
|
@ -145,7 +145,7 @@ Ox.load('UI', function() {
|
||||||
if (!self.text) {
|
if (!self.text) {
|
||||||
Ox.get('html/about.html', function(data) {
|
Ox.get('html/about.html', function(data) {
|
||||||
self.text = data;
|
self.text = data;
|
||||||
self.$text.html(data/*data.split('</p>')[0]*/);
|
self.$text.html(data);
|
||||||
self.$dialog.open();
|
self.$dialog.open();
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
@ -218,16 +218,12 @@ Ox.load('UI', function() {
|
||||||
}
|
}
|
||||||
}, function(keys, section) {
|
}, function(keys, section) {
|
||||||
self.$controlsPanel.append(
|
self.$controlsPanel.append(
|
||||||
$('<div>')
|
$('<div>').addClass('textTitle').html(section)
|
||||||
.addClass('textTitle')
|
|
||||||
.html(section)
|
|
||||||
);
|
);
|
||||||
Ox.forEach(keys, function(value, key) {
|
Ox.forEach(keys, function(value, key) {
|
||||||
self.$controlsPanel
|
self.$controlsPanel
|
||||||
.append(
|
.append(
|
||||||
$('<div>')
|
$('<div>').addClass('textKey').html(
|
||||||
.addClass('textKey')
|
|
||||||
.html(
|
|
||||||
key.split(' ').map(function(key) {
|
key.split(' ').map(function(key) {
|
||||||
return key.split('+').map(function(key) {
|
return key.split('+').map(function(key) {
|
||||||
return Ox.UI.symbols[key] || key;
|
return Ox.UI.symbols[key] || key;
|
||||||
|
@ -236,9 +232,7 @@ Ox.load('UI', function() {
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
.append(
|
.append(
|
||||||
$('<div>')
|
$('<div>').addClass('textValue').html(value)
|
||||||
.addClass('textValue')
|
|
||||||
.html(value)
|
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue