Skip to content

Commit

Permalink
fix(ionicLoading): make showDelay default to 0 (was 2000)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajoslin committed Feb 18, 2014
1 parent 43bc57a commit 0d3718c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/ext/angular/src/service/ionicLoading.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ angular.module('ionic.service.loading', ['ionic.ui.loading'])
/**
* Load an action sheet with the given template string.
*
* A new isolated scope will be created for the
* A new isolated scope will be created for the
* action sheet and the new element will be appended into the body.
*
* @param {object} opts the options for this ActionSheet (see docs)
Expand All @@ -16,7 +16,7 @@ angular.module('ionic.service.loading', ['ionic.ui.loading'])
animation: 'fade-in',
showBackdrop: true,
maxWidth: 200,
showDelay: 2000
showDelay: 0
};

opts = angular.extend(defaults, opts);
Expand Down

0 comments on commit 0d3718c

Please sign in to comment.