1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!DOCTYPE html>
- <html ng-strict-di>
- <head>
- <meta charset="utf-8">
- <!-- Third party stylesheets -->
- <link rel="stylesheet" href="../../node_modules/angular/angular-csp.css?v=[[VERSION]]">
- <link rel="stylesheet" href="../../node_modules/angular-material/angular-material.min.css?v=[[VERSION]]">
- <link rel="stylesheet" href="../../public/fonts/roboto.css?v=[[VERSION]]" type="text/css">
- <link rel="stylesheet" href="../../public/fonts/material.css?v=[[VERSION]]" type="text/css">
- <!-- Emoji -->
- <link rel="stylesheet" href="../../public/emoji/activity.css?v=[[VERSION]]" type="text/css" media="all" />
- <link rel="stylesheet" href="../../public/emoji/flags.css?v=[[VERSION]]" type="text/css" media="all" />
- <link rel="stylesheet" href="../../public/emoji/food.css?v=[[VERSION]]" type="text/css" media="all" />
- <link rel="stylesheet" href="../../public/emoji/nature.css?v=[[VERSION]]" type="text/css" media="all" />
- <link rel="stylesheet" href="../../public/emoji/objects.css?v=[[VERSION]]" type="text/css" media="all" />
- <link rel="stylesheet" href="../../public/emoji/people.css?v=[[VERSION]]" type="text/css" media="all" />
- <link rel="stylesheet" href="../../public/emoji/symbols.css?v=[[VERSION]]" type="text/css" media="all" />
- <link rel="stylesheet" href="../../public/emoji/travel.css?v=[[VERSION]]" type="text/css" media="all" />
- <!-- Own stylesheets -->
- <link rel="stylesheet" href="../../public/css/app.css?v=[[VERSION]]">
- <!-- Scripts -->
- <script src="../../dist/generated/uitest.bundle.js"></script>
- <script>
- function init() {
- if (window.uiTests === undefined) {
- window.setTimeout(init, 100);
- } else {
- window.uiTests.initComposeArea();
- }
- }
- init();
- </script>
- </head>
- <body>
- <div ng-controller="ComposeAreaController as ctrl">
- <compose-area
- on-init="ctrl.onInit"
- submit="ctrl.submit"
- initial-data="ctrl.initialData"
- start-typing="ctrl.startTyping"
- on-typing="ctrl.onTyping"
- stop-typing="ctrl.stopTyping"
- on-key-down="ctrl.onComposeKeyDown"
- on-uploading="ctrl.onUploading"
- max-text-length="ctrl.maxTextLength">
- </compose-area>
- <div>
- </body>
- </html>
|