rester sur la page sur un F5 (fixes #70)
This commit is contained in:
parent
500362ea3f
commit
ec17681560
|
@ -219,7 +219,6 @@
|
|||
|
||||
{% block localjavascript %}
|
||||
var idpage;
|
||||
|
||||
$('document').ready(function(){
|
||||
{% for page in pagesadmin %}
|
||||
{% if page.id==entity.id %}
|
||||
|
@ -241,6 +240,7 @@
|
|||
{% endfor %}
|
||||
{% endfor %}
|
||||
|
||||
|
||||
// Rendre les pages user déplacable
|
||||
$("#pagesuser").sortable({
|
||||
axis: "x",
|
||||
|
@ -369,6 +369,8 @@
|
|||
// Sauvegarder la page en cours
|
||||
idpage=id;
|
||||
|
||||
|
||||
|
||||
// Cacher toutes les pages
|
||||
$(".pageframereload").remove();
|
||||
$(".pageframe").hide();
|
||||
|
@ -382,6 +384,10 @@
|
|||
url=url.replace('yy',usage);
|
||||
url=url.replace('zz',groupid);
|
||||
|
||||
passurl="{{ path('cadoles_core_home',{id:'xx'}) }}";
|
||||
passurl=passurl.replace('xx',id);
|
||||
history.pushState('data to be passed', 'Title of the page', passurl);
|
||||
|
||||
// Si force le rechargement et frame existante on la détruit
|
||||
if(forcereload&&$("#page-"+id).length)
|
||||
$("#page-"+id).remove();
|
||||
|
|
Loading…
Reference in New Issue