mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
21 lines
345 B
JavaScript
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)
|
|
}
|
|
})
|