All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.resources.static.js.apiui-route.js Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
(function () {
    'use strict';
	myApp.config(config)
        .run(run);

    function config($stateProvider, $urlRouterProvider) {
        // default route
        $urlRouterProvider.otherwise("/");

        // app routes
        $stateProvider
            .state('mock', {
                url: 'mock',
                templateUrl: 'static/home/mock.html',
            })
            
            .state('swagger', {
                url: 'swagger',
                templateUrl: 'static/home/swagger.html',
            })
        
            .state('utils', {
                url: 'utils',
                templateUrl: 'static/home/utils.html',
            })
        
           }

    function run() {
    }
})();




© 2015 - 2024 Weber Informatics LLC | Privacy Policy