|
I've made small change but, not complete it refresh the application area every 3 min here is the code
- find this line in the page.tpl.php of your used theme (backup first)
[code]
display_application_content();
[/code]
replace with
[code]
echo '
<script type="text/javascript">
setInterval(function() {
$("#appframer").load(location.href+" #appframer>*","");
}, 180000);
</script>
<div id="appframer">';
display_application_content();
echo '</div>';
[/code]
One issue I should mention here if your client is trying to make something tooks hime more than 3 min it will be lost like uploading very big picture or music file olso if he is writing in his quick share in a bad timing (before seconds of refresh.. hope someone can fix that for me I'm very bad at java
adil |