trailing comma removal,
This commit is contained in:
parent
61e05f4f86
commit
68d50978ba
44 changed files with 87 additions and 87 deletions
|
|
@ -103,7 +103,7 @@ Ox.DocPage = function(options, self) {
|
|||
paddingTop: (level ? 0 : 8) + 'px',
|
||||
borderTopWidth: level ? 0 : '1px',
|
||||
marginTop: (level ? 0 : 8) + 'px',
|
||||
marginLeft: (level * 32) + 'px',
|
||||
marginLeft: (level * 32) + 'px'
|
||||
})
|
||||
.html(Ox.parseHTML(item.description))
|
||||
);
|
||||
|
|
@ -113,7 +113,7 @@ Ox.DocPage = function(options, self) {
|
|||
paddingTop: (level ? 0 : 8) + 'px',
|
||||
borderTopWidth: level ? 0 : '1px',
|
||||
marginTop: (level ? 0 : 8) + 'px',
|
||||
marginLeft: (level * 32) + 'px',
|
||||
marginLeft: (level * 32) + 'px'
|
||||
})
|
||||
.append(
|
||||
$('<img>')
|
||||
|
|
@ -195,7 +195,7 @@ Ox.DocPage = function(options, self) {
|
|||
.addClass(className)
|
||||
.css({
|
||||
borderWidth: '1px',
|
||||
marginTop: '8px',
|
||||
marginTop: '8px'
|
||||
})
|
||||
);
|
||||
} else {
|
||||
|
|
|
|||
|
|
@ -191,7 +191,7 @@ Ox.ExamplePage = function(options, self) {
|
|||
self.options.width = that.width();
|
||||
self.options.height = that.height();
|
||||
self.$content.css({
|
||||
width: self.options.width * 2 + 'px',
|
||||
width: self.options.width * 2 + 'px'
|
||||
})
|
||||
self.$viewer.css({
|
||||
width: self.options.width + 'px',
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ Ox.SourceViewer = function(options, self) {
|
|||
.defaults({
|
||||
file: '',
|
||||
replaceCode: [],
|
||||
replaceComment: [],
|
||||
replaceComment: []
|
||||
})
|
||||
.options(options)
|
||||
.addClass('OxSourceViewer');
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ Ox.SyntaxHighlighter = function(options, self) {
|
|||
showWhitespace: false,
|
||||
source: '',
|
||||
stripComments: false,
|
||||
tabSize: 4,
|
||||
tabSize: 4
|
||||
})
|
||||
.options(options || {})
|
||||
.addClass('OxSyntaxHighlighter');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue