trailing comma removal,

This commit is contained in:
j 2012-05-26 15:48:19 +00:00
commit 68d50978ba
44 changed files with 87 additions and 87 deletions

View file

@ -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 {

View file

@ -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',

View file

@ -14,7 +14,7 @@ Ox.SourceViewer = function(options, self) {
.defaults({
file: '',
replaceCode: [],
replaceComment: [],
replaceComment: []
})
.options(options)
.addClass('OxSourceViewer');

View file

@ -33,7 +33,7 @@ Ox.SyntaxHighlighter = function(options, self) {
showWhitespace: false,
source: '',
stripComments: false,
tabSize: 4,
tabSize: 4
})
.options(options || {})
.addClass('OxSyntaxHighlighter');