GUACAMOLE-197: Remove debug code from AngularJS files.

This commit is contained in:
Nick Couchman
2017-02-07 15:43:31 -05:00
committed by Nick Couchman
parent 3e994021da
commit 9c13cb9498
4 changed files with 3 additions and 7 deletions

View File

@@ -24,7 +24,6 @@
*/
angular.module('guacRadius').controller('radiusResponseController', ['$scope', '$element',
function radiusResponseController($scope, $element) {
console.log("In radiusResponseController() method.");
// Find the area to display the challenge message
var radiusChallenge = $element.find(document.querySelector('#radius-challenge-text'));

View File

@@ -24,10 +24,8 @@
*/
angular.module('guacRadius').controller('radiusStateController', ['$scope', '$element',
function radiusStateController($scope, $element) {
console.log("In radiusStateController() method.");
// Populate the input area for the connection state
console.log("RADIUS State: " + $scope.field.radiusState);
// Populate the hidden field for the connection state
$scope.model = $scope.field.radiusState;
}]);