mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge pull request #3151 from IgorNadj/patch-2
BUG fix listview not working with IE9
This commit is contained in:
commit
6466e390af
@ -23,6 +23,14 @@
|
||||
ajaxOpts.data = window.location.search.replace(/^\?/, '') + '&' + $.param(ajaxOpts.data);
|
||||
}
|
||||
|
||||
// For browsers which do not support history.pushState like IE9, ss framework uses hash to track
|
||||
// the current location for PJAX, so for them we pass the query string stored in the hash instead
|
||||
if(!window.history || !window.history.pushState){
|
||||
if(window.location.hash && window.location.hash.indexOf('?') != -1){
|
||||
ajaxOpts.data = window.location.hash.substring(window.location.hash.indexOf('?') + 1) + '&' + $.param(ajaxOpts.data);
|
||||
}
|
||||
}
|
||||
|
||||
form.addClass('loading');
|
||||
|
||||
$.ajax($.extend({}, {
|
||||
|
Loading…
Reference in New Issue
Block a user