1234567891011121314151617181920212223242526272829 |
- /* jshint -W117 */
- /* application specific logic */
-
- function init() {
-
- RTC.start();
- xmpp.start(UI.getCreadentials);
- }
-
-
- $(document).ready(function () {
-
- if(API.isEnabled())
- API.init();
-
- UI.start();
- statistics.start();
-
- // Set default desktop sharing method
- desktopsharing.init();
-
- keyboardshortcut.init();
- });
-
- $(window).bind('beforeunload', function () {
- if(API.isEnabled())
- API.dispose();
- });
|