mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/RevisionSlider
synced 2024-11-15 11:40:43 +00:00
Remove obsolete IE9 safe guard
Change-Id: I350cc395cb0ab673699cda03f6da19c9470ee7bb
This commit is contained in:
parent
040f6c28ae
commit
9f2f774cc4
|
@ -100,14 +100,11 @@ $.extend( DiffPage.prototype, {
|
|||
* @param {SliderView} sliderView
|
||||
*/
|
||||
replaceState: function ( diff, oldid, sliderView ) {
|
||||
// IE9 does not have history.replaceState()
|
||||
if ( typeof history.replaceState === 'function' ) {
|
||||
history.replaceState(
|
||||
this.getStateObject( diff, oldid, sliderView ),
|
||||
$( document ).find( 'title' ).text(),
|
||||
this.getStateUrl( diff, oldid )
|
||||
);
|
||||
}
|
||||
history.replaceState(
|
||||
this.getStateObject( diff, oldid, sliderView ),
|
||||
$( document ).find( 'title' ).text(),
|
||||
this.getStateUrl( diff, oldid )
|
||||
);
|
||||
},
|
||||
|
||||
/**
|
||||
|
@ -118,14 +115,11 @@ $.extend( DiffPage.prototype, {
|
|||
* @param {SliderView} sliderView
|
||||
*/
|
||||
pushState: function ( diff, oldid, sliderView ) {
|
||||
// IE9 does not have history.pushState()
|
||||
if ( typeof history.pushState === 'function' ) {
|
||||
history.pushState(
|
||||
this.getStateObject( diff, oldid, sliderView ),
|
||||
$( document ).find( 'title' ).text(),
|
||||
this.getStateUrl( diff, oldid )
|
||||
);
|
||||
}
|
||||
history.pushState(
|
||||
this.getStateObject( diff, oldid, sliderView ),
|
||||
$( document ).find( 'title' ).text(),
|
||||
this.getStateUrl( diff, oldid )
|
||||
);
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue