mermaid/test/nav.js
2017-09-10 19:41:34 +08:00

21 lines
345 B
JavaScript

var navApp = window.angular.module('navApp', [])
navApp.controller('NavAppCtrl', function ($scope) {
$scope.items = [
{
'name': 'Ett',
'url': 'cases/ett.html'
},
{
'name': 'Two',
'url': 'cases/two.html'
}
]
$scope.frameUrl = 'web.html'
$scope.go = function (url) {
window.alert(url)
}
})