Tutorial 22.1 Browser In HTML5 Mode
Browser in HTML5 mode ******************************************INDEX.HTML***************************************************** <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Example - example-location-html5-mode-production</title> <script src="//code.angularjs.org/snapshot/angular.min.js"></script> <script src="app.js"></script> <script src="fakeBrowser.js"></script> <script src="addressBar.js"></script> </head> <body ng-app="html5-mode"> <div ng-controller="LocationController"> <div ng-address-bar></div><br><br> <div> $location.protocol() = <span ng-bind="$location.protocol()"></span> <br> $location.host() = <span ng-bind="$location.host()"></span> ...