Skip to content

Commit

Permalink
1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
j3tan committed Jun 24, 2015
1 parent 7657343 commit 5cd89ef
Show file tree
Hide file tree
Showing 22 changed files with 72 additions and 56 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
v1.4.1 - June 24, 2015

* 1.4.1 (Jeff Tan)
* Ammended existing test to cover new fields (Jason Divock)
* Making errors a bit more reportable (Jason Divock)

v1.4.0 - June 11, 2015

* 1.4.0 (Jeff Tan)
Expand Down
18 changes: 0 additions & 18 deletions dist/t3-jquery-1.4.0.min.js

This file was deleted.

4 changes: 3 additions & 1 deletion dist/t3-jquery-1.4.0.js → dist/t3-jquery-1.4.1.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! t3-jquery v 1.4.0*/
/*! t3-jquery v 1.4.1*/
/*!
Copyright 2015 Box, Inc. All rights reserved.
Expand Down Expand Up @@ -526,6 +526,8 @@ Box.Application = (function() {
try {
return method.apply(this, arguments);
} catch (ex) {
ex.methodName = methodName;
ex.objectName = objectName;
ex.name = errorPrefix + ex.name;
ex.message = errorPrefix + ex.message;
error(ex);
Expand Down
18 changes: 18 additions & 0 deletions dist/t3-jquery-1.4.1.min.js

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

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! t3-jquery v 1.4.0*/
/*! t3-jquery v 1.4.1*/
/*!
Copyright 2015 Box, Inc. All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion dist/t3-jquery-testing.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! t3-jquery v 1.4.0*/
/*! t3-jquery v 1.4.1*/
/*!
Copyright 2015 Box, Inc. All rights reserved.
Expand Down
4 changes: 3 additions & 1 deletion dist/t3-jquery.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! t3-jquery v 1.4.0*/
/*! t3-jquery v 1.4.1*/
/*!
Copyright 2015 Box, Inc. All rights reserved.
Expand Down Expand Up @@ -526,6 +526,8 @@ Box.Application = (function() {
try {
return method.apply(this, arguments);
} catch (ex) {
ex.methodName = methodName;
ex.objectName = objectName;
ex.name = errorPrefix + ex.name;
ex.message = errorPrefix + ex.message;
error(ex);
Expand Down
Loading

0 comments on commit 5cd89ef

Please sign in to comment.