1
0
mirror of synced 2024-11-26 14:56:07 +03:00

Allow to pass a callback as ajax.url

This commit is contained in:
Frédéric Camblor 2013-01-08 18:54:14 +01:00
parent b4f6462bb2
commit a770ade670

View File

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