Brandon Wamboldt
unread,Feb 23, 2011, 9:30:44 AM2/23/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to MobWrite
I am running an instance of MobWrite locally, but it's not working.
What's weird is, looking at Firefox, the AJAX response looks valid. It
includes the contents of an editor in another window, but those
changes aren't being applied.
My code:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Concurrent Communications Test</title>
<script src="compressed_form.js"></script>
<script>
mobwrite.syncGateway = '/ajax-editor/mobwrite.php';
mobwrite.minSyncInterval = 500;
mobwrite.maxSyncInterval = 1000;
</script>
</head>
<body onload="mobwrite.share('test');">
<textarea id="test" style="width:500px;height:500px;">
</textarea>
</body>
</html>