Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed to the Apache Software Foundation (ASF) under one or more
- contributor license agreements. See the NOTICE file distributed with
- this work for additional information regarding copyright ownership.
- The ASF licenses this file to You under the Apache License, Version 2.0
- (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
- <j:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
- xmlns:j="library://ns.apache.org/royale/jewel"
- xmlns:js="library://ns.apache.org/royale/basic"
- xmlns:html="library://ns.apache.org/royale/html"
- xmlns:components="components.*"
- initialize="init()">
- <fx:Script>
- <![CDATA[
- import components.SMQuillEditor;
- private function init():void
- {
- var editor:SMQuillEditor=new SMQuillEditor();
- container.addElement(editor);
- }
- ]]>
- </fx:Script>
- <j:beads>
- <js:ApplicationDataBinding/>
- </j:beads>
- <j:initialView>
- <j:View>
- <j:beads>
- <j:VerticalCenteredLayout/>
- </j:beads>
- <j:Card width="90%" visible="true">
- <j:CardHeader>
- <html:H3 text="Using external Javascript Libraries" className="primary-normal"/>
- </j:CardHeader>
- <j:CardPrimaryContent>
- <j:Label html="This example uses quiljs library"/>
- <j:Group localId="container" width="200" height="200">
- </j:Group>
- </j:CardPrimaryContent>
- </j:Card>
- </j:View>
- </j:initialView>
- </j:Application>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement