1
0
mirror of synced 2025-02-04 14:19:23 +03:00

Merge pull request #692 from 4sh/master

Allow to pass a callback as ajax.url configuration parameter
This commit is contained in:
Igor Vaynberg 2013-01-08 10:44:58 -08:00
commit b562d1a0e5

View File

@ -316,7 +316,7 @@ the specific language governing permissions and limitations under the Apache Lic
if( null !== handler) { handler.abort(); } if( null !== handler) { handler.abort(); }
handler = transport.call(null, { handler = transport.call(null, {
url: options.url, url: ((typeof options.url === 'function')?options.url():options.url),
dataType: options.dataType, dataType: options.dataType,
data: data, data: data,
type: type, type: type,