Skip to content

Commit

Permalink
docs(): add default values
Browse files Browse the repository at this point in the history
  • Loading branch information
mrzmyr authored and ajoslin committed May 19, 2014
1 parent 55e910d commit 830ec44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/angular/service/loading.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
/**
Expand Down

0 comments on commit 830ec44

Please sign in to comment.