Skip to content

Commit

Permalink
Bumping to v0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim-Intellipharm committed Mar 25, 2015
1 parent 06aaec6 commit 61fec16
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "angular-cakephp",
"description": "An AngularJS data modelling framework that ties in with a CakePHP REST API",
"version": "0.3.1",
"version": "0.3.2",
"homepage": "https://github.com/intellipharm/angular-cakephp",
"repository": {
"type": "git",
Expand Down
8 changes: 4 additions & 4 deletions dist/angular-cakephp.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*!
* angular-cakephp v0.3.1
* angular-cakephp v0.3.2
* http://intellipharm.com/
*
* Copyright 2015 Intellipharm
*
* 2015-03-25 11:00:23
* 2015-03-25 11:08:34
*
*/
(function() {
Expand Down Expand Up @@ -895,10 +895,10 @@
* @param config
*/
this.handleErrorResponse = function(resolve, reject, model, response, status, headers, config) {
var angularCakePHPApiErrorResponseTransformer = $injector.get('AngularCakePHPApiIndexResponseTransformer');
var angularCakePHPApiErrorResponseTransformer = $injector.get('AngularCakePHPApiErrorResponseTransformer');

if (_.isFunction(angularCakePHPApiErrorResponseTransformer)) {
angularCakePHPApiIndexResponseTransformer(resolve, reject, model, response, status, headers, config);
angularCakePHPApiErrorResponseTransformer(resolve, reject, model, response, status, headers, config);
} else {
reject({data: response.data, message: response.message});
}
Expand Down
Loading

0 comments on commit 61fec16

Please sign in to comment.