diff --git a/template/app/controller/Examples.js b/template/app/controller/Examples.js index a59f537c69a5614ce48563426100b36e7f604014..598c9bf939cb5763c39c5c9248d68cb428ff3ebe 100644 --- a/template/app/controller/Examples.js +++ b/template/app/controller/Examples.js @@ -40,11 +40,6 @@ Ext.define('Docs.controller.Examples', { this.activateTab(cmp, 'preview'); } }, - 'inlineexample [cmpName=meta]': { - activate: function(cmp) { - this.activateTab(cmp, 'info'); - } - }, 'inlineexample toolbar button[iconCls=code]': { click: function(cmp) { cmp.up('inlineexample').layout.setActiveItem(0); @@ -55,11 +50,6 @@ Ext.define('Docs.controller.Examples', { cmp.up('inlineexample').layout.setActiveItem(1); } }, - 'inlineexample toolbar button[iconCls=info]': { - click: function(cmp) { - cmp.up('inlineexample').layout.setActiveItem(2); - } - }, 'classoverview': { resize: function() { Ext.Array.each(Ext.ComponentQuery.query('.inlineexample'), function(c) { diff --git a/template/app/view/examples/Inline.js b/template/app/view/examples/Inline.js index 906fd1bdb6984d56419d29bc68671b1ca1ccdee3..4ee82ec15d337d62fc3a438280683b88853d3b6a 100644 --- a/template/app/view/examples/Inline.js +++ b/template/app/view/examples/Inline.js @@ -36,12 +36,6 @@ Ext.define('Docs.view.examples.Inline', { iconCls: 'preview', tooltip: 'Preview' }, - { - padding: 0, - margin: 0, - iconCls: 'info', - tooltip: 'Meta Info' - }, { padding: 0, margin: 0, @@ -70,12 +64,6 @@ Ext.define('Docs.view.examples.Inline', { html: '' }); - this.items.push({ - bodyPadding: 10, - html: 'Meta Info', - cmpName: 'meta' - }); - this.callParent(arguments); }, diff --git a/template/resources/sass/viewport.scss b/template/resources/sass/viewport.scss index 80b2d61bfa689000de0949cf5352b3daad7c2ef3..7756036eb887d6ad154e1e71b83994e44292953d 100644 --- a/template/resources/sass/viewport.scss +++ b/template/resources/sass/viewport.scss @@ -744,8 +744,6 @@ a { background-position: -2px -20px; } &.preview { background-position: -3px -62px; } - &.info { - background-position: -2px -111px; } &.copy { background-position: -2px -85px; } } .active span.x-btn-icon { @@ -755,7 +753,5 @@ a { background-position: -30px -20px; } &.preview { background-position: -31px -62px; } - &.info { - background-position: -30px -111px; } &.copy { background-position: -30px -85px; } } }