From: <gem...@li...> - 2012-01-11 15:18:52
|
Revision: 405 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=405&view=rev Author: matijsdejong Date: 2012-01-11 15:18:41 +0000 (Wed, 11 Jan 2012) Log Message: ----------- function relocated by alphabet Modified Paths: -------------- trunk/new_project/htdocs/gems/js/autoSubmitForm.js Modified: trunk/new_project/htdocs/gems/js/autoSubmitForm.js =================================================================== --- trunk/new_project/htdocs/gems/js/autoSubmitForm.js 2012-01-11 15:18:06 UTC (rev 404) +++ trunk/new_project/htdocs/gems/js/autoSubmitForm.js 2012-01-11 15:18:41 UTC (rev 405) @@ -44,6 +44,12 @@ } }, + error: function (request, status) { + if (request.status === 401) { + location.href = location.href; + } + }, + filter: function () { //If we have a pending request and want to create a new one, cancel the first @@ -78,12 +84,6 @@ } } }, - - error: function (request, status) { - if (request.status === 401) { - location.href = location.href; - } - }, success: function (data, status, request) { jQuery(this.options.targetId).html(data); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |