diff --git a/template/app/view/examples/InlinePreview.js b/template/app/view/examples/InlinePreview.js index 72b292323787dec5e43c75a3c42903cb62253097..2bf386a93cb5b010a9bcd8c3184236e1d6190dd5 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 ce2696f36d2270c24bab65ce04ee3bfe230d7dde..dc224a3d7417490e9e78f33f067fd28afaeba2bf 100644 --- a/template/eg-iframe.html +++ b/template/eg-iframe.html @@ -9,14 +9,14 @@