I attempted to replicate the steps outlined in an Angular template at . Unfortunately, something went wrong and I am unable to identify the issue.
Here is what the code looks like:
menu.html
<div class="container">
<div class="row row-content" ng-controller="MenuController ">
<div class="col-xs-12">
<ul class="nav nav-tabs" role="tablist">
<li role="presentation"
ng-class="{active:isSelected(1)}">
<a ng-click="select(1)"
aria-controls="all menu"
role="tab">The Menu</a></li>
...
...
and index.html
<!DOCTYPE html>
<html lang="en" ng-app="confusionApp">
<head>
...
...
https://i.sstatic.net/8wCln.png
https://i.sstatic.net/rytRr.png
Both files are located in the same directory. Also, I am using "''". Thank you for any assistance provided!