Skip to content

Commit 4e55665

Browse files
FLUID external url updated
1 parent 1e3945a commit 4e55665

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
# Only exists if Bazel was run
88
/bazel-out
99

10+
# Ignore cache created with the Angular CLI.
11+
.angular/
12+
1013
# dependencies
1114
/node_modules
1215

fluid.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const fluidEnvironments = {
2121
},
2222
external: {
2323
label: 'External',
24-
esm: 'https://dsfe50dspcxki.cloudfront.net/fluid/build/fluid.esm.js',
25-
legacy: 'https://dsfe50dspcxki.cloudfront.net/fluid/build/fluid.esm.js',
24+
esm: 'https://fluid.libertymutual.com/fluid/build/fluid.esm.js',
25+
legacy: 'https://fluid.libertymutual.com/fluid/build/fluid.esm.js',
2626
},
2727
};

src/app/wrapper-editor/wrapper-editor.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ <h1>Angular App with StencilJS Editor</h1>
1111
placeholder="Ängular RTE MVP"
1212
(contentChanged)="handleContentChange($event)">
1313
</custom-rtf>
14-
<h1>@tinymce/tinymce-webcompoment:valid API key (14-day trial)</h1>
14+
<h1>tinymce/tinymce-webcompoment:valid API key (14-day trial)</h1>
1515
<rich-text-editor></rich-text-editor>

src/main.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ if ('noModule' in script) {
2727
script.type = 'module';
2828
script.src = fluid.esm;
2929
} else {
30-
script.type = 'text/javascript';
31-
script.src = fluid.legacy;
30+
// script.type = 'text/javascript';
31+
// script.src = fluid.legacy;
3232
}
3333
document.head.appendChild(script);

0 commit comments

Comments
 (0)