App.js 311 B

123456789101112131415
  1. class App {
  2. static Version = '#_version_';
  3. static CookieName = 'doczilla_js_docs_cookie';
  4. static start() {
  5. $('.left').resizable({ handles: 'e' });
  6. DOM.get('.left>.left-header>.title').on('click', (e) => {
  7. Url.goTo('/');
  8. });
  9. }
  10. }
  11. window_.on(DOM.Events.Load, (e) => {
  12. App.start();
  13. });