GUACAMOLE-197: Move state field to template file for consistency.

This commit is contained in:
Nick Couchman
2017-04-11 10:57:45 -04:00
committed by Nick Couchman
parent fd84e761b1
commit 60b5802cc7
2 changed files with 2 additions and 1 deletions

View File

@@ -34,7 +34,7 @@ angular.module('guacRadius').config(['formServiceProvider',
formServiceProvider.registerFieldType('GUAC_RADIUS_STATE', { formServiceProvider.registerFieldType('GUAC_RADIUS_STATE', {
module : 'guacRadius', module : 'guacRadius',
controller : 'radiusStateController', controller : 'radiusStateController',
template : '<input class="ng-hide" type=hidden ng-model="model" />' templateUrl : 'app/ext/radius/templates/radiusStateField.html'
}); });
}]); }]);

View File

@@ -0,0 +1 @@
<input type=hidden ng-model="model" />