From 61e3f9b63a827c71177478e95c0687f46cc742ad Mon Sep 17 00:00:00 2001 From: Rene Saarsoo Date: Wed, 5 Oct 2011 16:43:38 +0300 Subject: [PATCH] Make inline example preview visible by default for Touch. --- template/app/controller/InlineExamples.js | 4 +++- template/app/view/examples/Inline.js | 11 ++++++----- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/template/app/controller/InlineExamples.js b/template/app/controller/InlineExamples.js index c4a6baba..7268b6e3 100644 --- a/template/app/controller/InlineExamples.js +++ b/template/app/controller/InlineExamples.js @@ -116,7 +116,9 @@ Ext.define('Docs.controller.InlineExamples', { example.codeEditor.setValue(code); var activeItem = example.layout.getActiveItem(); if (activeItem.cmpName == 'preview') { - this.refreshPreview(example); + example.showPreview(function() { + this.refreshPreview(example); + }, this); } example.updateHeight(); }, diff --git a/template/app/view/examples/Inline.js b/template/app/view/examples/Inline.js index e2ff298a..b681c181 100644 --- a/template/app/view/examples/Inline.js +++ b/template/app/view/examples/Inline.js @@ -59,8 +59,14 @@ Ext.define('Docs.view.examples.Inline', { bodyPadding: 2, bodyStyle: 'background: #f7f7f7', autoScroll: true + }, + { + bodyPadding: '0 10', + cmpName: 'preview', + html: this.getHtml() } ]; + this.activeItem = Docs.touchExamplesUi ? 1 : 0; this.callParent(arguments); }, @@ -80,11 +86,6 @@ Ext.define('Docs.view.examples.Inline', { */ showPreview: function(callback, scope) { if (!this.previewInitialized) { - this.add({ - bodyPadding: '0 10', - cmpName: 'preview', - html: this.getHtml() - }); var iframe = document.getElementById(this.getIframeId()); // Something is not quite ready when onload fires. // I'm unsure what I should wait for. So I'm currently adding just this nasty delay. -- GitLab