(content)
| 135 | |
| 136 | //填充预览效果内容 |
| 137 | function loadPreview(content) { |
| 138 | var iFrame = createIFrame(), |
| 139 | iframeDocument = iFrame.contentWindow.document; |
| 140 | iFrame.contentWindow.resources=window.resources?window.resources.resources:{}; |
| 141 | iframeDocument.open(); |
| 142 | iframeDocument.write(content); |
| 143 | iframeDocument.close(); |
| 144 | var doc = document; |
| 145 | iFrame.addEventListener('load', function () { |
| 146 | mapHeight(); |
| 147 | setTimeout(function () { |
| 148 | doc.title = iframeDocument.title; |
| 149 | }, 100); |
| 150 | |
| 151 | }); |
| 152 | |
| 153 | mapHeight(); |
| 154 | } |
| 155 | |
| 156 | function createIFrame() { |
| 157 | var preViewPane = $("#previewPane"); |
no test coverage detected