replace comment

This commit is contained in:
Javier 2016-09-19 12:00:44 -03:00
commit b3bf13918d
3 changed files with 21 additions and 35 deletions

View file

@ -32,9 +32,9 @@ angular.module('copayApp.services').service('popupService', function($log, $ioni
opts = opts || {};
$ionicPopup.prompt({
title: title,
subTitle: message,
inputType: opts.inputType,
inputPlaceholder: opts.inputPlaceholder,
subTitle: message || ' ',
inputType: opts.inputType || 'text',
inputPlaceholder: opts.inputPlaceholder || '',
defaultText: opts.defaultText
}).then(function(res) {
return cb(res)