Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cribjs-editor
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
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
Cédric Le Ninivin
cribjs-editor
Commits
c7fdf5a3
Commit
c7fdf5a3
authored
Sep 28, 2020
by
Cédric Le Ninivin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CodeMirrorGadget: Add getSupportedTypeList Method
parent
7d6b0723
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
gadget/codemirror.gadget.js
gadget/codemirror.gadget.js
+9
-0
No files found.
gadget/codemirror.gadget.js
View file @
c7fdf5a3
...
...
@@ -108,6 +108,15 @@
this
.
editor
.
focus
();
})
.
declareMethod
(
'
getSupportedTypeList
'
,
function
()
{
var
result_list
=
[],
key
;
for
(
key
in
CodeMirror
.
mimeModes
)
{
if
(
CodeMirror
.
mimeModes
.
hasOwnProperty
(
key
))
{
result_list
.
push
(
key
);
}
}
return
result_list
;
})
.
declareMethod
(
'
getContent
'
,
function
()
{
var
form_data
=
{};
if
(
this
.
state
.
editable
)
{
...
...
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