I am building a website using Angularjs, also I am using an admin theme for bootstrap.
The theme works fine, but when I divide it in views (ng-view), the different javascript based parts stop working.
For example to open a modal window
<a href="javascript:;" class="primary-bg medium radius-all-2 display-block >btn basic-dialog"> <span class="button-content text-center float-none font-size-11 text->transform-upr">View Basic dialog example</span> </a> </div> <div class="hide" id="basic-dialog" title="Basic dialog title"> <div class="pad10A"> Dialog content here </div> </div>
if I put this just in the index.html of the application it works fine, if I move it to an ng-view it doesn't work.
ng-view
– m.e.conroy Nov 15 '13 at 14:00