TogetherJS

Alternative to retired TogetherJS [closed]

五迷三道 提交于 2020-06-25 03:38:38
问题 Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . Improve this question Is there a good alternative to TogetherJS? Its GitHub hasn't had any activity for months, and this post says its currently dead with its future uncertain. The feature most unique to TogetherJS as apposed to say, ShareJS, is the ability to see another person's

Using together.js for cobrowsing an Angular.js application

对着背影说爱祢 提交于 2019-12-06 05:52:44
问题 I am trying to implement co-browsing using Together.js on an Angular.js application. While screensharing works and the users can see what each other does on initial view, when the user navigates to a different "view" the together.js doesn't sense this prompt/ nudge the user to follow. Has anyone got together.js cobrowsing working with an angular.js application? thanks 回答1: Together.js are not working properly with angularjs application. You need to update togetherjs to make it work. 来源: https

TogetherJS - 网站实时协作JavaScript库

浪尽此生 提交于 2019-11-29 08:58:04
快速开始 通过在页面上包含两件事来快速入门。首先是JavaScript: <script> // TogetherJS configuration would go here, but we'll talk about that // later </script> <script src="https://togetherjs.com/togetherjs-min.js"></script> 你可以把它放在任何地方; 就在之前 </body> 。 下一步是在您的网站上放置一个按钮,让用户启动TogetherJS: <button onclick="TogetherJS(this); return false;">Start TogetherJS</button> 或者如果你不喜欢 onclick : <button id="start-togetherjs">Start TogetherJS</button> <script> $(function () { $("#start-togetherjs").click(TogetherJS); }); </script> 调用 TogetherJS() 将启动该工具,或者如果工具已经启动则停止该工具。 togetherjs-min.js 即使您没有包含“Start TogetherJS”按钮,也应该将脚本放在站点的每个页面上