Skip to content
This repository has been archived by the owner on Sep 15, 2021. It is now read-only.

Commit

Permalink
build for 0.1.26-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
gortok committed Apr 8, 2016
1 parent 52612f7 commit e4d716e
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 31 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngCordova",
"version": "0.1.24-alpha",
"version": "0.1.26-alpha",
"homepage": "http://ngCordova.com/",
"authors": [
"Max Lynch <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion demo/www/lib/ngCordova/dist/ng-cordova.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* ngCordova
* v0.1.24-alpha
* v0.1.26-alpha
* Copyright 2015 Drifty Co. http://drifty.com/
* See LICENSE in this repository for license information
*/
Expand Down
2 changes: 1 addition & 1 deletion demo/www/lib/ngCordova/dist/ng-cordova.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

48 changes: 24 additions & 24 deletions dist/ng-cordova-mocks.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* ngCordova
* v0.1.24-alpha
* v0.1.26-alpha
* Copyright 2015 Drifty Co. http://drifty.com/
* See LICENSE in this repository for license information
*/
Expand Down Expand Up @@ -30,7 +30,7 @@ ngCordovaMocks.factory('$cordovaActionSheet', ['$q', function ($q) {
*/
throwsError: throwsError,

show: function() {
show: function () {
var defer = $q.defer();

if (this.throwsError) {
Expand Down Expand Up @@ -2526,12 +2526,12 @@ ngCordovaMocks.factory('$cordovaNetwork', ['$rootScope',function ($rootScope) {
**/
isConnected: isConnected,

switchToOnline: function(){
switchToOnline: function (){
this.isConnected = true;
$rootScope.$broadcast('$cordovaNetwork:online');
},

switchToOffline: function(){
switchToOffline: function (){
this.isConnected = false;
$rootScope.$broadcast('$cordovaNetwork:offline');
},
Expand Down Expand Up @@ -2560,20 +2560,20 @@ ngCordovaMocks.factory('$cordovaNetwork', ['$rootScope',function ($rootScope) {
*/

ngCordovaMocks.factory('$cordovaProgress', [
'$timeout', function($timeout) {
'$timeout', function ($timeout) {

return {
show: function(_message) {
show: function (_message) {
var message = _message || 'Please wait...';
console.info('$cordovaProgress.message', message);
},

showSimple: function(_dim) {
showSimple: function (_dim) {
var dim = _dim || false;
console.info('$cordovaProgress.dim', dim);
},

showSimpleWithLabel: function(_dim, _label) {
showSimpleWithLabel: function (_dim, _label) {
var dim = _dim || false;
var label = _label || 'Loading...';
console.group();
Expand All @@ -2582,7 +2582,7 @@ ngCordovaMocks.factory('$cordovaProgress', [
console.groupEnd();
},

showSimpleWithLabelDetail: function(_dim, _label, _detail) {
showSimpleWithLabelDetail: function (_dim, _label, _detail) {
var dim = _dim || false;
var label = _label || 'Loading...';
var detail = _detail || 'Please wait';
Expand All @@ -2594,19 +2594,19 @@ ngCordovaMocks.factory('$cordovaProgress', [
console.groupEnd();
},

showDeterminate: function(_dim, _timeout) {
showDeterminate: function (_dim, _timeout) {
var dim = _dim || false;
var timeout = _timeout || 50000;
console.group();
console.info('$cordovaProgress.dim show', dim);
console.info('$cordovaProgress.timeout', timeout);
console.groupEnd();
$timeout(function() {
$timeout(function () {
console.info('$cordovaProgress.dim timeout', dim);
}, timeout);
},

showDeterminateWithLabel: function(_dim, _timeout, _label) {
showDeterminateWithLabel: function (_dim, _timeout, _label) {
var dim = _dim || false;
var timeout = _timeout || 50000;
var label = _label || 'Loading...';
Expand All @@ -2616,25 +2616,25 @@ ngCordovaMocks.factory('$cordovaProgress', [
console.info('$cordovaProgress.timeout', timeout);
console.info('$cordovaProgress.label', label);
console.groupEnd();
$timeout(function() {
$timeout(function () {
console.info('$cordovaProgress[dim, label] timeout', [dim, label]);
}, timeout);
},

showAnnular: function(_dim, _timeout) {
showAnnular: function (_dim, _timeout) {
var dim = _dim || false;
var timeout = _timeout || 50000;

console.group();
console.info('$cordovaProgress.dim', dim);
console.info('$cordovaProgress.timeout', timeout);
console.groupEnd();
$timeout(function() {
$timeout(function () {
console.info('$cordovaProgress.dim timeout', dim);
}, timeout);
},

showAnnularWithLabel: function(_dim, _timeout, _label) {
showAnnularWithLabel: function (_dim, _timeout, _label) {
var dim = _dim || false;
var timeout = _timeout || 50000;
var label = _label || 'Loading...';
Expand All @@ -2644,25 +2644,25 @@ ngCordovaMocks.factory('$cordovaProgress', [
console.info('$cordovaProgress.timeout', timeout);
console.info('$cordovaProgress.label', label);
console.groupEnd();
$timeout(function() {
$timeout(function () {
console.info('$cordovaProgress[dim, label] timeout', [dim, label]);
}, timeout);
},

showBar: function(_dim, _timeout) {
showBar: function (_dim, _timeout) {
var dim = _dim || false;
var timeout = _timeout || 50000;

console.group();
console.info('$cordovaProgress.dim', dim);
console.info('$cordovaProgress.timeout', timeout);
console.groupEnd();
$timeout(function() {
$timeout(function () {
console.info('$cordovaProgress.dim timeout', dim);
}, timeout);
},

showBarWithLabel: function(_dim, _timeout, _label) {
showBarWithLabel: function (_dim, _timeout, _label) {
var dim = _dim || false;
var timeout = _timeout || 50000;
var label = _label || 'Loading...';
Expand All @@ -2671,12 +2671,12 @@ ngCordovaMocks.factory('$cordovaProgress', [
console.info('$cordovaProgress.label', label);
console.info('$cordovaProgress.timeout', timeout);
console.groupEnd();
$timeout(function() {
$timeout(function () {
console.info('$cordovaProgress[dim, label] timeout', [dim, label]);
}, timeout);
},

showSuccess: function(_dim, _label) {
showSuccess: function (_dim, _label) {
var dim = _dim || false;
var label = _label || 'Success';
console.group();
Expand All @@ -2685,7 +2685,7 @@ ngCordovaMocks.factory('$cordovaProgress', [
console.groupEnd();
},

showText: function(_dim, _text, _position) {
showText: function (_dim, _text, _position) {
var dim = _dim || false;
var text = _text || 'Warning';
var position = _position || 'center';
Expand All @@ -2696,7 +2696,7 @@ ngCordovaMocks.factory('$cordovaProgress', [
console.groupEnd();
},

hide: function() {
hide: function () {
console.info('$cordovaProgress.hide');
}
};
Expand Down
2 changes: 1 addition & 1 deletion dist/ng-cordova-mocks.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/ng-cordova.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* ngCordova
* v0.1.24-alpha
* v0.1.26-alpha
* Copyright 2015 Drifty Co. http://drifty.com/
* See LICENSE in this repository for license information
*/
Expand Down
2 changes: 1 addition & 1 deletion dist/ng-cordova.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ng-cordova",
"private": false,
"main": "dist/ng-cordova",
"version": "0.1.24-alpha",
"version": "0.1.26-alpha",
"repository": {
"url": "git://github.com/driftyco/ng-cordova.git"
},
Expand Down

0 comments on commit e4d716e

Please sign in to comment.