vendredi 10 juillet 2015

Rails and Ember.js navbar

This works fine:

<div class='collapse navbar-collapse' id='main-nav-collapse'>
  <ul class='nav navbar-nav'>
   {{#link-to 'index' tagName='li' activeClass='active'}}
     {{#link-to 'index'}}Home{{/link-to}}
     {{/link-to}}
  </ul>
</div>

But when I add in another tab below, and restart the server nothing shows at all..

<div class='collapse navbar-collapse' id='main-nav-collapse'>
  <ul class='nav navbar-nav'>
    {{#link-to 'index' tagName='li' activeClass='active'}}
     {{#link-to 'index'}}Home{{/link-to}}
     {{/link-to}}
    {{#link-to 'orders' tagName='li' activeClass='active'}}
     {{#link-to 'orders'}}Orders{{/link-to}}
     {{/link-to}}
  </ul>
 </div>

Orders is "orders.hbs" and is just a static html page.. and in my routers.js.coffee file is the following route:

Dashboard.Router.map ()->
      @resource('orders')

I'm just setting things up now, but eventually will have a dynamic table built under the orders tab..

Aucun commentaire:

Enregistrer un commentaire