Skip to content

Commit 8f74c4b

Browse files
author
Hector Virgen
committed
Prepare for 0.1.14 release.
1 parent 171a06f commit 8f74c4b

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

api-angular-min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api-angular.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44

55
var context = typeof exports !== 'undefined' ? exports : window;
66
var base64 = context.btoa || require('btoa');
7-
var Promise = context.Promise || require('bluebird');
7+
if (typeof(require) === 'function') {
8+
var Promise = context.Promise || require('bluebird');
9+
}
810

911
var COOKIE_KEYVALUE_SEPARATOR = /; */;
1012

@@ -347,7 +349,6 @@
347349
'use strict';
348350

349351
var context = typeof exports !== 'undefined' ? exports : window;
350-
var Promise = context.Promise || require('bluebird');
351352
var SESSION_COOKIE_NAME_REGEX = /(?:^| )S=/;
352353

353354
AngularAdapter.$inject = ['$http', '$document', '$window'];

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tagged-api-client",
3-
"version": "0.1.13",
3+
"version": "0.1.14",
44
"authors": [
55
"Hector Virgen <hvirgen@tagged.com>"
66
],

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tagged-api",
3-
"version": "0.1.13",
3+
"version": "0.1.14",
44
"description": "API client for Tagged with support for nodejs and angularjs",
55
"main": "lib/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)