Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
taskonsite-архив-перенесен
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Packages
Packages
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dmitry Korolev
taskonsite-архив-перенесен
Commits
80b98080
Commit
80b98080
authored
Feb 10, 2026
by
duke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tiny
parent
cb9f9a0c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
3 deletions
+24
-3
backend/web/js/form-load.js
backend/web/js/form-load.js
+24
-3
No files found.
backend/web/js/form-load.js
View file @
80b98080
...
...
@@ -24,9 +24,9 @@ $(function ()
theme
:
"
modern
"
,
language
:
"
ru
"
,
schema
:
"
html5
"
,
custom_elements
:
"
emstart,emend,header,main,span,icon,uibutton,uiinfotile,template
"
,
custom_elements
:
"
emstart,emend,header,main,span,icon,uibutton,uiinfotile,template
,ui-button,ui-infotile
"
,
valid_children
:
'
+a[div]
'
,
extended_valid_elements
:
"
span[id|name|class|style],i[id|name|class|style],ul[id|name|class|style],li[id|name|class|style],script[type|src],style,icon[*],uibutton[*],uiinfotile[*],template[*]
"
,
extended_valid_elements
:
"
span[id|name|class|style],i[id|name|class|style],ul[id|name|class|style],li[id|name|class|style],script[type|src],style,icon[*],uibutton[*],uiinfotile[*],
ui-button[*],ui-infotile[*],
template[*]
"
,
height
:
'
350px
'
,
menubar
:
"
edit insert view format table tools
"
,
plugins
:
[
...
...
@@ -43,6 +43,27 @@ $(function ()
external_filemanager_path
:
"
/filemanager/
"
,
filemanager_access_key
:
"
cSahxMGM9cePZyTcGlG0nG9R2eWHVlWNHCjtcr1X
"
,
filemanager_title
:
"
Responsive Filemanager
"
,
external_plugins
:
{
"
filemanager
"
:
"
/filemanager/plugin.min.js
"
}
external_plugins
:
{
"
filemanager
"
:
"
/filemanager/plugin.min.js
"
},
setup
:
(
editor
)
=>
{
editor
.
on
(
'
BeforeSetContent
'
,
(
e
)
=>
{
let
content
=
e
.
content
;
if
(
content
===
0
)
{
return
;
}
for
(
const
tag
of
[
'
UIButton
'
,
'
UIInfoTile
'
])
{
content
=
content
.
replace
(
new
RegExp
(
`\\b
${
tag
}
\\b`
,
'
g
'
),
tag
.
replace
(
/
(
UI
)([
a-zA-Z
])
/g
,
'
$1-$2
'
).
toLowerCase
()
);
}
e
.
content
=
content
;
});
}
});
});
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment