Skip to content

Instantly share code, notes, and snippets.

@Shawful
Created September 27, 2014 19:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Shawful/9e12012250692190708d to your computer and use it in GitHub Desktop.
Save Shawful/9e12012250692190708d to your computer and use it in GitHub Desktop.
Commented out navbar
angular.module("wizard.html", []).run(["$templateCache", function($templateCache) {
$templateCache.put("wizard.html",
"<div>\n" +
" <div class=\"steps\" ng-transclude></div>\n" +
// " <ul class=\"steps-indicator steps-{{steps.length}}\" ng-if=\"!hideIndicators\">\n" +
// " <li ng-class=\"{default: !step.completed && !step.selected, current: step.selected && !step.completed, done: step.completed && !step.selected, editing: step.selected && step.completed}\" ng-repeat=\"step in steps\">\n" +
// " <a ng-click=\"goTo(step)\">{{step.title || step.wzTitle}}</a>\n" +
// " </li>\n" +
// " </ul>\n" +
"</div>\n" +
"");
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment