senchalabs / jsduck

Simple JavaScript Duckumentation generator.
http://docs.sencha.com/
GNU General Public License v3.0
1.5k stars 238 forks source link

Problem With @example tag #645

Open mrlu80 opened 8 years ago

mrlu80 commented 8 years ago

I have a simple example (just to prove that examples are working)

I get the following error on my console: VM841 app.js:2653Uncaught TypeError: Cannot read property 'is' of undefined

Line where error occurs in app.js: updateIOS: Ext.os.is.iOS ? function() {

I have added my own iframe file to the jduck doc generation process. This file has the following script tags:

    <script type="text/javascript" src="extjs-build/ext-all.js"></script>
    <link rel="stylesheet" type="text/css" href="extjs-build/resources/css/ext-all.css">

    <!-- My custom components -->
    <script type="text/javascript" src="app.js"></script>

I have also ensured ext-all.js, ext-all.css, and app.js are being loaded.

Please help!!