mermaid/test/nav.js
2017-04-11 22:57:57 +08:00

20 lines
363 B
JavaScript

/**
* Created by knut on 2015-09-15.
*/
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)
}
})