From 830ec44753e1708ec2012e0a3eab1749bc0dc650 Mon Sep 17 00:00:00 2001 From: mrzmyr Date: Mon, 19 May 2014 01:02:45 +0200 Subject: [PATCH] docs(): add default values --- js/angular/service/loading.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/angular/service/loading.js b/js/angular/service/loading.js index 6d012ef45c..380c1733fd 100644 --- a/js/angular/service/loading.js +++ b/js/angular/service/loading.js @@ -56,10 +56,10 @@ function($document, $ionicTemplateLoader, $ionicBackdrop, $timeout, $q, $log, $c * @param {object} opts The options for the loading indicator. Available properties: * - `{string=}` `template` The html content of the indicator. * - `{string=}` `templateUrl` The url of an html template to load as the content of the indicator. - * - `{boolean=}` `noBackdrop` Whether to hide the backdrop. - * - `{number=}` `delay` How many milliseconds to delay showing the indicator. + * - `{boolean=}` `noBackdrop` Whether to hide the backdrop. By default it will be shown. + * - `{number=}` `delay` How many milliseconds to delay showing the indicator. By default there is no delay. * - `{number=}` `duration` How many milliseconds to wait until automatically - * hiding the indicator. + * hiding the indicator. By default the indicator will be shown until `.hide()` is called. */ show: showLoader, /**