symphony-integration-commons
Version:
Common components for 3rd party developers build the user facing application for Symphony Integrations.
37 lines (31 loc) • 1.48 kB
HTML
<!--
Licensed to the Symphony Software Foundation (SSF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The SSF 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.
-->
<!-- This is the controller, which runs as a persistent iFrame, out of the user's view -->
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello World App - Controller</title>
</head>
<body>
<!-- Include the Symphony Client Extensions API javascript -->
<script type="text/javascript" src="https://www.symphony.com/resources/api/v1.0/symphony-api.js" charset="utf-8"></script>
<!-- script type="text/javascript" src="symphony-api.js"></script -->
<!-- Include the app controller javascript. This file is generated when running the npm webpack commands. -->
<script type="text/javascript" src="controller.bundle.js" charset="utf-8"></script>
</body>
</html>