mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge pull request #2873 from kinglozzer/2872-ie8-jquery-ondemand
FIX: IE8 support in jquery.ondemand.js (fixes #2872)
This commit is contained in:
commit
429fdfaa72
@ -16,7 +16,7 @@
|
|||||||
(function($){
|
(function($){
|
||||||
|
|
||||||
var decodePath = function(str) {
|
var decodePath = function(str) {
|
||||||
return str.replace(/%2C/g,',').replace(/\&/g, '&').trim();
|
return str.replace(/%2C/g,',').replace(/\&/g, '&').replace(/^\s+|\s+$/g, '');
|
||||||
};
|
};
|
||||||
|
|
||||||
$.extend({
|
$.extend({
|
||||||
|
Loading…
Reference in New Issue
Block a user