Skip to content

Commit f82bc45

Browse files
author
Hector Virgen
committed
Prepare for v0.1.15 release
1 parent 456fb6d commit f82bc45

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
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: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,7 @@
204204
var newOpts = {
205205
query: {
206206
application_id: 'user',
207-
format: 'JSON',
208-
session_token: req.cookies && req.cookies.S
207+
format: 'JSON'
209208
},
210209
params: {
211210
api_signature: ''
@@ -447,9 +446,9 @@
447446
// and the same instance will be passed around through the Angular app.
448447
module.factory('taggedApi', taggedApiFactory);
449448

450-
taggedApiFactory.$inject = ['$http', '$document', '$q', '$window'];
451-
function taggedApiFactory($http, $document, $q, $window) {
452-
var angularAdapter = new TaggedApi.AngularAdapter($http, $document, $window);
449+
taggedApiFactory.$inject = ['$http', '$q'];
450+
function taggedApiFactory($http, $q) {
451+
var angularAdapter = new TaggedApi.AngularAdapter($http);
453452

454453
var api = new TaggedApi('/api/', {
455454
query: {

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.14",
3+
"version": "0.1.15",
44
"authors": [
55
"Hector Virgen <[email protected]>"
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.14",
3+
"version": "0.1.15",
44
"description": "API client for Tagged with support for nodejs and angularjs",
55
"main": "lib/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)