mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-17 14:29:48 +02:00
Auto fix standard style voilations
This commit is contained in:
24
test/nav.js
24
test/nav.js
@@ -1,19 +1,19 @@
|
||||
/**
|
||||
* Created by knut on 2015-09-15.
|
||||
*/
|
||||
var navApp = angular.module('navApp', []);
|
||||
var navApp = angular.module('navApp', [])
|
||||
|
||||
navApp.controller('NavAppCtrl', function ($scope) {
|
||||
$scope.items = [
|
||||
{'name': 'Ett',
|
||||
'url': 'cases/ett.html'},
|
||||
{'name': 'Two',
|
||||
'url': 'cases/two.html'}
|
||||
];
|
||||
$scope.items = [
|
||||
{'name': 'Ett',
|
||||
'url': 'cases/ett.html'},
|
||||
{'name': 'Two',
|
||||
'url': 'cases/two.html'}
|
||||
]
|
||||
|
||||
$scope.frameUrl = "web.html"
|
||||
$scope.frameUrl = 'web.html'
|
||||
|
||||
$scope.go = function(url){
|
||||
alert(url);
|
||||
}
|
||||
});
|
||||
$scope.go = function (url) {
|
||||
alert(url)
|
||||
}
|
||||
})
|
||||
|
Reference in New Issue
Block a user