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

public.app.js Maven / Gradle / Ivy

There is a newer version: 0.9.6
Show newest version
var app = angular
  .module("miniumWebConsole", [ "ngRoute", "ajoslin.promise-tracker" ])
  .config([ "$routeProvider", function($routeProvider) {
    $routeProvider.
      // web drivers
      when("/webDrivers/create/remote" , { templateUrl : "partials/dialog-remotewebdriver-create.html" , controller : RemoteWebDriverCreateCtrl   }).
      when("/webDrivers/create/:typeId", { templateUrl : "partials/dialog-webdriver-create.html"       , controller : WebDriverCreateCtrl   }).
      when("/webDrivers/list"          , { templateUrl : "partials/dialog-webdriver-list.html"         , controller : WebDriverListCtrl     }).
      
      // editor
      when("/editorPreferences"        , { templateUrl : "partials/dialog-editor-preferences.html"     , controller : EditorPreferencesCtrl }).
      when("/selectorGadget/activate"  , { templateUrl : "partials/dialog-selector-gadget.html"        , controller : SelectorGadgetCtrl    }).
      
      // configuration
      when("/configuration"            , { templateUrl : "partials/dialog-configuration.html"          , controller : ConfigurationCtrl }).
      otherwise({redirectTo: ""});
  }]);




© 2015 - 2025 Weber Informatics LLC | Privacy Policy