Commit c8cab73b authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Syntax cleanup.

Remove training commas and whitespace.
Add missing semicolons.
parent 5dbcb4b8
Loading
Loading
Loading
Loading
+11 −11
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ Ext.define('Docs.controller.DocTests', {

        this.control({
            '#doctestgrid': {
                afterrender: this.onGridAfterRender,
                afterrender: this.onGridAfterRender
            }
        });
    },
@@ -68,7 +68,7 @@ Ext.define('Docs.controller.DocTests', {
            var task = new Ext.util.DelayedTask(function() {
                this.locateClsExamples(store, cls);
            }, this);
            task.delay(0)
            task.delay(0);
        }, this);
    },

+10 −10
Original line number Diff line number Diff line
@@ -133,7 +133,7 @@ Ext.define('Docs.view.doctests.Index', {
        var example = testRunner.add(
            Ext.create('Docs.view.examples.Inline', {
                cls: 'doc-test-preview',
                value: Ext.String.htmlDecode(Ext.util.Format.stripTags(record.get('code'))),
                value: Ext.String.htmlDecode(Ext.util.Format.stripTags(record.get('code')))
            })
        );

@@ -173,7 +173,7 @@ Ext.define('Docs.view.doctests.Index', {
        this.runExample({
            pass: 0,
            fail: 0,
            examples: [record],
            examples: [record]
        });
    },

+9 −14
Original line number Diff line number Diff line
// Styles for doc tests
.doc-test-preview {
 display: none;
}
  display: none; }

.doc-test-ready {
  font-weight: bold;
 color: #333;
}
  color: #333; }

.doc-test-error {
  font-weight: bold;
 color: orange;
}
  color: orange; }

.doc-test-failure {
  font-weight: bold;
 color: red;
}
  color: red; }

.doc-test-success {
  font-weight: bold;
 color: green;
}
 No newline at end of file
  color: green; }
+1 −1

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+3 −3

File changed.

Contains only whitespace changes.

+12 −12

File changed.

Contains only whitespace changes.

Loading