Skip to content

Commit 7179b2c

Browse files
authored
Apply suggestions from code review
1 parent c589b35 commit 7179b2c

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

modules/ROOT/partials/integrations/jquery-quick-start.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ ifeval::["{productSource}" == "package-manager"]
119119
<script>
120120
$('textarea#tiny').tinymce({
121121
height: 500,
122-
license_key: 'gpl' // gpl for open source, T8LK:... for commercial
122+
license_key: 'gpl'
123123
/* other settings... */,
124124
});
125125
</script>
@@ -149,7 +149,7 @@ ifeval::["{productSource}" == "package-manager"]
149149
<script>
150150
$('textarea#tiny').tinymce({
151151
height: 500,
152-
license_key: 'gpl' // gpl for open source, T8LK:... for commercial
152+
license_key: 'gpl'
153153
menubar: false,
154154
plugins: [
155155
'advlist', 'autolink', 'lists', 'link', 'image', 'charmap', 'preview',

modules/ROOT/partials/integrations/react-quick-start.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ export default function App() {
149149
<>
150150
<Editor
151151
tinymceScriptSrc='/tinymce/tinymce.min.js'
152-
licenseKey='gpl' // gpl for open source, T8LK:... for commercial
152+
licenseKey='gpl'
153153
onInit={(_evt, editor) => editorRef.current = editor}
154154
initialValue='<p>This is the initial content of the editor.</p>'
155155
init={{
@@ -243,7 +243,7 @@ import 'tinymce/skins/ui/oxide/content';
243243
export default function BundledEditor(props) {
244244
return (
245245
<Editor
246-
licenseKey='gpl' // gpl for open source, T8LK:... for commercial
246+
licenseKey='gpl'
247247
{...props}
248248
/>
249249
);
@@ -358,7 +358,7 @@ export default function App() {
358358
<>
359359
<Editor
360360
tinymceScriptSrc='/tinymce/tinymce.min.js'
361-
licenseKey='gpl' // gpl for open source, T8LK:... for commercial
361+
licenseKey='gpl'
362362
onInit={(_evt, editor) => editorRef.current = editor}
363363
initialValue='<p>This is the initial content of the editor.</p>'
364364
init={{

modules/ROOT/partials/integrations/svelte-quick-start.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ let conf = {
175175
<main>
176176
<h1>Hello Tiny</h1>
177177
<Editor
178-
license_key: 'gpl', // gpl for open source, T8LK:... for commercial
178+
license_key: 'gpl',
179179
scriptSrc='/path/or/url/to/tinymce.min.js'
180180
value='<p>This is the initial content of the editor.</p>'
181181
{conf}

modules/ROOT/partials/integrations/vue-quick-start.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ import Editor from '@tinymce/tinymce-vue'
167167
<img alt="Vue logo" class="logo" src="./assets/logo.svg" width="125" height="125" />
168168
<editor
169169
id="uuid"
170-
licenseKey="gpl" /* gpl for open source, T8LK:... for commercial */
170+
licenseKey="gpl"
171171
:init="{
172172
plugins: 'advlist anchor autolink charmap code fullscreen help image insertdatetime link lists media preview searchreplace table visualblocks wordcount',
173173
toolbar: 'undo redo | styles | bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image',
@@ -213,7 +213,7 @@ import Editor from '@tinymce/tinymce-vue'
213213
<img alt="Vue logo" class="logo" src="./assets/logo.svg" width="125" height="125" />
214214
<editor
215215
id="uuid"
216-
licenseKey="gpl" /* gpl for open source, T8LK:... for commercial */
216+
licenseKey="gpl"
217217
:init="{
218218
plugins: 'advlist anchor autolink charmap code fullscreen help image insertdatetime link lists media preview searchreplace table visualblocks wordcount',
219219
toolbar: 'undo redo | styles | bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image',

0 commit comments

Comments
 (0)