|
1
|
jQuery( document ).ready( function( $ ) { |
|
2
|
if ( typeof helpdocs_remove_qs !== 'undefined' && helpdocs_remove_qs && helpdocs_remove_qs.title !== '' ) { |
|
3
|
if ( history.pushState ) { |
|
4
|
let obj = { Title: helpdocs_remove_qs.title, Url: helpdocs_remove_qs.url }; |
|
5
|
window.history.pushState( obj, obj.Title, obj.Url ); |
|
6
|
} |
|
7
|
} |
|
8
|
} );
|