Skip to content

Commit afd0efe

Browse files
cleanup of extra whitespace which caused no-multi-spaces errors in circleci
1 parent d3fad60 commit afd0efe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: js/angular/service/popup.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -466,10 +466,10 @@ function($ionicTemplateLoader, $ionicBackdrop, $q, $timeout, $rootScope, $ionicB
466466
function showPrompt(opts) {
467467
var scope = $rootScope.$new(true);
468468
scope.data = {};
469-
scope.data.fieldtype = opts.inputType ? opts.inputType : 'text';
470-
scope.data.response = opts.defaultText ? opts.defaultText : '';
469+
scope.data.fieldtype = opts.inputType ? opts.inputType : 'text';
470+
scope.data.response = opts.defaultText ? opts.defaultText : '';
471471
scope.data.placeholder = opts.inputPlaceholder ? opts.inputPlaceholder : '';
472-
scope.data.maxlength = opts.maxLength ? parseInt(opts.maxLength) : '';
472+
scope.data.maxlength = opts.maxLength ? parseInt(opts.maxLength) : '';
473473
var text = '';
474474
if (opts.template && /<[a-z][\s\S]*>/i.test(opts.template) === false) {
475475
text = '<span>' + opts.template + '</span>';

0 commit comments

Comments
 (0)