Fix some code style issues

This commit is contained in:
Tyler Long
2017-04-11 22:57:57 +08:00
parent 7d1c1e3845
commit 413162dfad
16 changed files with 27 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
/**
* Created by knut on 2015-09-15.
*/
var navApp = angular.module('navApp', [])
var navApp = window.angular.module('navApp', [])
navApp.controller('NavAppCtrl', function ($scope) {
$scope.items = [
@@ -14,6 +14,6 @@ navApp.controller('NavAppCtrl', function ($scope) {
$scope.frameUrl = 'web.html'
$scope.go = function (url) {
alert(url)
window.alert(url)
}
})