mirror of
				https://github.com/gyurix1968/guacamole-client.git
				synced 2025-10-31 09:03:21 +00:00 
			
		
		
		
	GUAC-932: Move connection editor to own page.
This commit is contained in:
		| @@ -29,31 +29,37 @@ angular.module('index').config(['$routeProvider', '$locationProvider', | ||||
|     // Disable HTML5 mode (use # for routing) | ||||
|     $locationProvider.html5Mode(false); | ||||
|      | ||||
|     $routeProvider. | ||||
|         when('/', { | ||||
|     $routeProvider | ||||
|         .when('/', { | ||||
|             title: 'application.title', | ||||
|             bodyClassName: 'home', | ||||
|             templateUrl: 'app/home/templates/home.html', | ||||
|             controller: 'homeController' | ||||
|         }). | ||||
|         when('/manage/', { | ||||
|         }) | ||||
|         .when('/manage/', { | ||||
|             title: 'application.title', | ||||
|             bodyClassName: 'manage', | ||||
|             templateUrl: 'app/manage/templates/manage.html', | ||||
|             controller: 'manageController' | ||||
|         }). | ||||
|         when('/login/', { | ||||
|         }) | ||||
|         .when('/manage/connections/:id?', { | ||||
|             title: 'application.title', | ||||
|             bodyClassName: 'manage-connection', | ||||
|             templateUrl: 'app/manage/templates/manageConnection.html', | ||||
|             controller: 'manageConnectionController' | ||||
|         }) | ||||
|         .when('/login/', { | ||||
|             title: 'application.title', | ||||
|             bodyClassName: 'login', | ||||
|             templateUrl: 'app/login/templates/login.html', | ||||
|             controller: 'loginController' | ||||
|         }). | ||||
|         when('/client/:type/:id/:params?', { | ||||
|         }) | ||||
|         .when('/client/:type/:id/:params?', { | ||||
|             bodyClassName: 'client', | ||||
|             templateUrl: 'app/client/templates/client.html', | ||||
|             controller: 'clientController' | ||||
|         }). | ||||
|         otherwise({ | ||||
|         }) | ||||
|         .otherwise({ | ||||
|             redirectTo: '/' | ||||
|         }); | ||||
| }]); | ||||
|   | ||||
| @@ -92,23 +92,6 @@ | ||||
|     z-index: 1; | ||||
| } | ||||
|  | ||||
| .dialog .dropdown { | ||||
|  | ||||
|     position: absolute; | ||||
|     z-index: 2; | ||||
|     margin-top: -1px; | ||||
|  | ||||
|     width: 3in; | ||||
|     max-height: 2in; | ||||
|     overflow: auto; | ||||
|  | ||||
|     border: 1px solid rgba(0, 0, 0, 0.5); | ||||
|     background: white; | ||||
|  | ||||
|     font-size: 10pt; | ||||
|  | ||||
| } | ||||
|  | ||||
| .dialog .footer { | ||||
|     text-align: center; | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user