git-svn-id: https://develop.svn.wordpress.org/trunk@4439 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2006-11-01 16:49:23 +00:00
parent 5ae75c9a44
commit 8c82107b6e
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ var autosavePeriodical;
function autosave_start_timer() {
var form = $('post');
autosaveLast = form.post_title.value+form.content.value;
autosavePerodical = new PeriodicalExecutor(autosave, <?php echo apply_filters('autosave_interval', '60000'); ?>);
autosavePerodical = new PeriodicalExecuter(autosave, <?php echo apply_filters('autosave_interval', '60000'); ?>);
}
addLoadEvent(autosave_start_timer)