mirror of
				https://github.com/mermaid-js/mermaid.git
				synced 2025-11-04 12:54:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			384 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			384 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/**
 | 
						|
 * Created by knut on 2015-09-15.
 | 
						|
 */
 | 
						|
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.frameUrl = "web.html"
 | 
						|
 | 
						|
    $scope.go = function(url){
 | 
						|
        alert(url);
 | 
						|
    }
 | 
						|
}); |