Commit 8cb175f8 authored by limscoder's avatar limscoder
Browse files

Removed display: none style from .doc-test-preview for proper functioning in FF.

parent 2c04aeec
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ Ext.define('Docs.view.doctests.Index', {
        },
        {
            itemId: 'testrunner',
            margin: 5
            height: 0,
        },
        {
            itemId: 'testcontainer',
@@ -136,6 +136,7 @@ Ext.define('Docs.view.doctests.Index', {
        var example = testRunner.add(
            Ext.create('Docs.view.examples.Inline', {
                cls: 'doc-test-preview',
                height: 0,
                value: Ext.String.htmlDecode(Ext.util.Format.stripTags(record.get('code')))
            })
        );
+0 −3
Original line number Diff line number Diff line
// Styles for doc tests
.doc-test-preview {
  display: none; }

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