Repository: olingo-odata4-js Updated Branches: refs/heads/master f9aaa8149 -> db4b77ac9
[OLINGO-316] Add fix for djstest.js Project: http://git-wip-us.apache.org/repos/asf/olingo-odata4-js/repo Commit: http://git-wip-us.apache.org/repos/asf/olingo-odata4-js/commit/db4b77ac Tree: http://git-wip-us.apache.org/repos/asf/olingo-odata4-js/tree/db4b77ac Diff: http://git-wip-us.apache.org/repos/asf/olingo-odata4-js/diff/db4b77ac Branch: refs/heads/master Commit: db4b77ac93f045ea0a015ce12cdd3063cc0478e7 Parents: f9aaa81 Author: Sven Kobler <[email protected]> Authored: Fri Jun 6 14:07:31 2014 +0200 Committer: Sven Kobler <[email protected]> Committed: Fri Jun 6 14:07:31 2014 +0200 ---------------------------------------------------------------------- datajs/tests/common/djstest.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/olingo-odata4-js/blob/db4b77ac/datajs/tests/common/djstest.js ---------------------------------------------------------------------- diff --git a/datajs/tests/common/djstest.js b/datajs/tests/common/djstest.js index 554b064..50b180a 100644 --- a/datajs/tests/common/djstest.js +++ b/datajs/tests/common/djstest.js @@ -397,7 +397,7 @@ var init = function (window) { // Disable caching to ensure that every test-related AJAX request is actually being sent, // and set up a default error handler if (window !== undefined) {//TODO improve - /*$.ajaxSetup({ + $.ajaxSetup({ cache: false, error: function (jqXHR, textStatus, errorThrown) { // Work around bug in IE-Mobile on Windows Phone 7 @@ -411,7 +411,7 @@ var init = function (window) { } djstest.done(); } - });*/ + }); } return djstest;
