From 1eac9ee24faa5e8a9bce1372ca8735d47b9774b8 Mon Sep 17 00:00:00 2001 From: limscoder Date: Sun, 22 Apr 2012 16:16:54 -0600 Subject: [PATCH] Moved iframeId argument of loadInlineExample into options obj. --- template/app/view/examples/InlinePreview.js | 6 +++--- template/eg-iframe.html | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/template/app/view/examples/InlinePreview.js b/template/app/view/examples/InlinePreview.js index 72b29232..2bf386a9 100644 --- a/template/app/view/examples/InlinePreview.js +++ b/template/app/view/examples/InlinePreview.js @@ -94,8 +94,8 @@ Ext.define('Docs.view.examples.InlinePreview', { * @param {String} code The code to run inside iframe. */ update: function(code) { - var options = this.options, - iframeId = this.iframeId, + var iframeId = this.iframeId, + options = Ext.apply({iframeId: iframeId}, this.options), iframe = document.getElementById(iframeId); if (iframe) { @@ -104,7 +104,7 @@ Ext.define('Docs.view.examples.InlinePreview', { // 1 ms works in Chrome, Firefox wants something bigger. Works in IE too. iframe.onload = function() { Ext.Function.defer(function() { - iframe.contentWindow.loadInlineExample(iframeId, code, options); + iframe.contentWindow.loadInlineExample(code, options); }, 100); }; iframe.src = "eg-iframe.html"; diff --git a/template/eg-iframe.html b/template/eg-iframe.html index ce2696f3..dc224a3d 100644 --- a/template/eg-iframe.html +++ b/template/eg-iframe.html @@ -9,14 +9,14 @@ -- GitLab