From e4d716e6d90004b66e9baca62dc67c6407a70bfb Mon Sep 17 00:00:00 2001 From: George Stocker Date: Fri, 8 Apr 2016 08:48:00 -0400 Subject: [PATCH] build for 0.1.26-alpha --- bower.json | 2 +- demo/www/lib/ngCordova/dist/ng-cordova.js | 2 +- demo/www/lib/ngCordova/dist/ng-cordova.min.js | 2 +- dist/ng-cordova-mocks.js | 48 +++++++++---------- dist/ng-cordova-mocks.min.js | 2 +- dist/ng-cordova.js | 2 +- dist/ng-cordova.min.js | 2 +- package.json | 2 +- 8 files changed, 31 insertions(+), 31 deletions(-) diff --git a/bower.json b/bower.json index 309e9a52..b0e46d39 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "ngCordova", - "version": "0.1.24-alpha", + "version": "0.1.26-alpha", "homepage": "http://ngCordova.com/", "authors": [ "Max Lynch ", diff --git a/demo/www/lib/ngCordova/dist/ng-cordova.js b/demo/www/lib/ngCordova/dist/ng-cordova.js index 9c2a8c5a..a59620b6 100644 --- a/demo/www/lib/ngCordova/dist/ng-cordova.js +++ b/demo/www/lib/ngCordova/dist/ng-cordova.js @@ -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 */ diff --git a/demo/www/lib/ngCordova/dist/ng-cordova.min.js b/demo/www/lib/ngCordova/dist/ng-cordova.min.js index f1b64e69..4ae32822 100644 --- a/demo/www/lib/ngCordova/dist/ng-cordova.min.js +++ b/demo/www/lib/ngCordova/dist/ng-cordova.min.js @@ -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 */ diff --git a/dist/ng-cordova-mocks.js b/dist/ng-cordova-mocks.js index ec05cfbb..0cf15abd 100644 --- a/dist/ng-cordova-mocks.js +++ b/dist/ng-cordova-mocks.js @@ -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 */ @@ -30,7 +30,7 @@ ngCordovaMocks.factory('$cordovaActionSheet', ['$q', function ($q) { */ throwsError: throwsError, - show: function() { + show: function () { var defer = $q.defer(); if (this.throwsError) { @@ -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'); }, @@ -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(); @@ -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'; @@ -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...'; @@ -2616,12 +2616,12 @@ 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; @@ -2629,12 +2629,12 @@ ngCordovaMocks.factory('$cordovaProgress', [ 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...'; @@ -2644,12 +2644,12 @@ 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; @@ -2657,12 +2657,12 @@ ngCordovaMocks.factory('$cordovaProgress', [ 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...'; @@ -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(); @@ -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'; @@ -2696,7 +2696,7 @@ ngCordovaMocks.factory('$cordovaProgress', [ console.groupEnd(); }, - hide: function() { + hide: function () { console.info('$cordovaProgress.hide'); } }; diff --git a/dist/ng-cordova-mocks.min.js b/dist/ng-cordova-mocks.min.js index 372c4e09..798bbbdd 100644 --- a/dist/ng-cordova-mocks.min.js +++ b/dist/ng-cordova-mocks.min.js @@ -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 */ diff --git a/dist/ng-cordova.js b/dist/ng-cordova.js index 9c2a8c5a..a59620b6 100644 --- a/dist/ng-cordova.js +++ b/dist/ng-cordova.js @@ -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 */ diff --git a/dist/ng-cordova.min.js b/dist/ng-cordova.min.js index f1b64e69..4ae32822 100644 --- a/dist/ng-cordova.min.js +++ b/dist/ng-cordova.min.js @@ -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 */ diff --git a/package.json b/package.json index c4291350..cd4a5421 100644 --- a/package.json +++ b/package.json @@ -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" },