lungojs - lungo framework does not work with example code -


i testing lungo framework, , reading examples (http://lungo.tapquo.com/howto/prototype), not work.

i using skeleton code:

 <body class="app">  <section id="main" data-transition="">     <article id="main-article" class="active">         test.     </article> </section>  <script src="components/quojs/quo.js"></script> <script src="components/lungo/lungo.js"></script>  <script type='text/javascript'>     lungo.init({         name: 'example'     }); </script>  </body> 

i have no errors in console. can causing issue? in advance.

if that's of html, you're missing whole bunch of css files, etc. share js fiddle or longer code example? way you're not getting js errors implies me may missing css. also, version of lungo using? how did obtain it?

lots of questions :) however, created basic lungo jsfiddle while ago - http://jsfiddle.net/otupman/vz59n/ - try , see if works. in "external resources" section you'll find css & js i'm including make work.

the simple code i'm using (as s/o won't let me post jsfiddle link without code) looks this:

<section id="main" >      <header data-title="jsfiddle lungo">         <nav class="left">             <a data-icon="home"></a>         </nav>     </header>     <article class="active" id="first_article">         <strong>simple example</strong>         <a href="#second_article" data-router="article">second article</a>         <br/>         <a href="#second_section" data-router="section">second section</a>     </article>     <article id="second_article">         <strong>second article</strong>         <a href="#first_article" data-router="article">first article</a>         <br/>         <a href="#second_section" data-router="section">second section</a>     </article> </section> 

all of css/js files coming lungo's example, example, 1 css http://lungo.tapquo.com/example/components/lungo/lungo.css


Comments

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -