intel / appframework

The definitive HTML5 mobile javascript framework
http://app-framework-software.intel.com/
MIT License
2.43k stars 882 forks source link

Every time you load a panel with ajax that includes a "<nav>" this is duplicated in the dom, charging many times as Ajax calls #890

Closed M1gu3l4ng3l closed 8 years ago

M1gu3l4ng3l commented 9 years ago

AF2.2 Every time you load a panel with ajax that includes the element <nav> it is duplicated in the dom charging many times as Ajax calls.

Sample: This panel is loaded by ajax

<div class="panel" title="xxxx" id="panel1"  data-nav="navuser1" >
    <ul class="list">    
        <li> Load Ajax Panel 1  </li>
    </ul>
    <nav id="navuser1">     
       <ul class="list"> 
          <li class="divider">Menus</li>    
          <li><a href="/users"  class="icon home">Home User</li>
       </ul>
    </nav>
</div>

the element <nav id="navuser1"> doubles each ajax call.