diff --git a/webadmin/src/js/setupdns.js b/webadmin/src/js/setupdns.js index 6d555a4fa..cd13ad309 100644 --- a/webadmin/src/js/setupdns.js +++ b/webadmin/src/js/setupdns.js @@ -108,10 +108,10 @@ app.controller('SetupDNSController', ['$scope', '$http', 'Client', function ($sc }; if (!data.projectId || !data.credentials || !data.credentials.client_email || !data.credentials.private_key) { - throw "fields_missing"; + throw 'fields_missing'; } } catch(e) { - $scope.dnsCredentials.error = "Cannot parse Google Service Account Key"; + $scope.dnsCredentials.error = 'Cannot parse Google Service Account Key'; $scope.dnsCredentials.busy = false; return; } @@ -134,7 +134,7 @@ app.controller('SetupDNSController', ['$scope', '$http', 'Client', function ($sc } waitForDnsSetup(); - }); + }); }; function waitForDnsSetup() {