Advertisement
ichsan_anam

Quill.as

Mar 10th, 2021
4,091
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ////////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  Licensed to the Apache Software Foundation (ASF) under one or more
  4. //  contributor license agreements.  See the NOTICE file distributed with
  5. //  this work for additional information regarding copyright ownership.
  6. //  The ASF licenses this file to You under the Apache License, Version 2.0
  7. //  (the "License"); you may not use this file except in compliance with
  8. //  the License.  You may obtain a copy of the License at
  9. //
  10. //      http://www.apache.org/licenses/LICENSE-2.0
  11. //
  12. //  Unless required by applicable law or agreed to in writing, software
  13. //  distributed under the License is distributed on an "AS IS" BASIS,
  14. //  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. //  See the License for the specific language governing permissions and
  16. //  limitations under the License.
  17. //
  18. ////////////////////////////////////////////////////////////////////////////////
  19. package
  20. {
  21.     /**
  22.     * @externs
  23.     */
  24.     public class Quill
  25.     {
  26.         /**
  27.         * <inject_script>
  28.         * var script = document.createElement("script");
  29.         * script.setAttribute("src", "https://cdn.quilljs.com/1.3.6/quill.min.js");
  30.         * document.head.appendChild(script);
  31.         * var link = document.createElement("link");
  32.         * link.setAttribute("rel", "stylesheet");
  33.         * link.setAttribute("type", "text/css");
  34.         * link.setAttribute("href", "https://cdn.quilljs.com/1.3.6/quill.snow.css");
  35.         * document.head.appendChild(link);
  36.         * </inject_script>
  37.         */
  38.         public function Quill(element:*, config:*){}
  39.  
  40.     }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement