Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
cms_sys
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
西魏
cms_sys
Commits
f40087b8
Commit
f40087b8
authored
Dec 27, 2019
by
zhongyh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加插件
parent
ffa51c87
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
vue-codemirror.js
...in/webapp/static/plugins/vue-codemirror/vue-codemirror.js
+2
-0
No files found.
src/main/webapp/static/plugins/vue-codemirror/vue-codemirror.js
0 → 100644
View file @
f40087b8
!
function
(
e
,
t
){
"object"
==
typeof
exports
&&
"object"
==
typeof
module
?
module
.
exports
=
t
(
require
(
"codemirror"
)):
"function"
==
typeof
define
&&
define
.
amd
?
define
([
"codemirror"
],
t
):
"object"
==
typeof
exports
?
exports
.
VueCodemirror
=
t
(
require
(
"codemirror"
)):
e
.
VueCodemirror
=
t
(
e
.
codemirror
)}(
this
,
function
(
e
){
return
function
(
e
){
function
t
(
r
){
if
(
n
[
r
])
return
n
[
r
].
exports
;
var
o
=
n
[
r
]
=
{
i
:
r
,
l
:
!
1
,
exports
:{}};
return
e
[
r
].
call
(
o
.
exports
,
o
,
o
.
exports
,
t
),
o
.
l
=!
0
,
o
.
exports
}
var
n
=
{};
return
t
.
m
=
e
,
t
.
c
=
n
,
t
.
i
=
function
(
e
){
return
e
},
t
.
d
=
function
(
e
,
n
,
r
){
t
.
o
(
e
,
n
)
||
Object
.
defineProperty
(
e
,
n
,{
configurable
:
!
1
,
enumerable
:
!
0
,
get
:
r
})},
t
.
n
=
function
(
e
){
var
n
=
e
&&
e
.
__esModule
?
function
(){
return
e
.
default
}:
function
(){
return
e
};
return
t
.
d
(
n
,
"a"
,
n
),
n
},
t
.
o
=
function
(
e
,
t
){
return
Object
.
prototype
.
hasOwnProperty
.
call
(
e
,
t
)},
t
.
p
=
"/"
,
t
(
t
.
s
=
3
)}([
function
(
t
,
n
){
t
.
exports
=
e
},
function
(
e
,
t
,
n
){
"use strict"
;
Object
.
defineProperty
(
t
,
"__esModule"
,{
value
:
!
0
});
var
r
=
n
(
0
),
o
=
function
(
e
){
return
e
&&
e
.
__esModule
?
e
:{
default
:
e
}}(
r
),
i
=
window
.
CodeMirror
||
o
.
default
;
"function"
!=
typeof
Object
.
assign
&&
Object
.
defineProperty
(
Object
,
"assign"
,{
value
:
function
(
e
,
t
){
if
(
null
==
e
)
throw
new
TypeError
(
"Cannot convert undefined or null to object"
);
for
(
var
n
=
Object
(
e
),
r
=
1
;
r
<
arguments
.
length
;
r
++
){
var
o
=
arguments
[
r
];
if
(
null
!=
o
)
for
(
var
i
in
o
)
Object
.
prototype
.
hasOwnProperty
.
call
(
o
,
i
)
&&
(
n
[
i
]
=
o
[
i
])}
return
n
},
writable
:
!
0
,
configurable
:
!
0
}),
t
.
default
=
{
name
:
"codemirror"
,
data
:
function
(){
return
{
content
:
""
,
codemirror
:
null
,
cminstance
:
null
}},
props
:{
code
:
String
,
value
:
String
,
marker
:
Function
,
unseenLines
:
Array
,
name
:{
type
:
String
,
default
:
"codemirror"
},
placeholder
:{
type
:
String
,
default
:
""
},
merge
:{
type
:
Boolean
,
default
:
!
1
},
options
:{
type
:
Object
,
default
:
function
(){
return
{}}},
events
:{
type
:
Array
,
default
:
function
(){
return
[]}},
globalOptions
:{
type
:
Object
,
default
:
function
(){
return
{}}},
globalEvents
:{
type
:
Array
,
default
:
function
(){
return
[]}}},
watch
:{
options
:{
deep
:
!
0
,
handler
:
function
(
e
){
for
(
var
t
in
e
)
this
.
cminstance
.
setOption
(
t
,
e
[
t
])}},
merge
:
function
(){
this
.
$nextTick
(
this
.
switchMerge
)},
code
:
function
(
e
){
this
.
handerCodeChange
(
e
)},
value
:
function
(
e
){
this
.
handerCodeChange
(
e
)}},
methods
:{
initialize
:
function
(){
var
e
=
this
,
t
=
Object
.
assign
({},
this
.
globalOptions
,
this
.
options
);
this
.
merge
?(
this
.
codemirror
=
i
.
MergeView
(
this
.
$refs
.
mergeview
,
t
),
this
.
cminstance
=
this
.
codemirror
.
edit
):(
this
.
codemirror
=
i
.
fromTextArea
(
this
.
$refs
.
textarea
,
t
),
this
.
cminstance
=
this
.
codemirror
,
this
.
cminstance
.
setValue
(
this
.
code
||
this
.
value
||
this
.
content
)),
this
.
cminstance
.
on
(
"change"
,
function
(
t
){
e
.
content
=
t
.
getValue
(),
e
.
$emit
&&
e
.
$emit
(
"input"
,
e
.
content
)});
var
n
=
{};[
"scroll"
,
"changes"
,
"beforeChange"
,
"cursorActivity"
,
"keyHandled"
,
"inputRead"
,
"electricInput"
,
"beforeSelectionChange"
,
"viewportChange"
,
"swapDoc"
,
"gutterClick"
,
"gutterContextMenu"
,
"focus"
,
"blur"
,
"refresh"
,
"optionChange"
,
"scrollCursorIntoView"
,
"update"
].
concat
(
this
.
events
).
concat
(
this
.
globalEvents
).
filter
(
function
(
e
){
return
!
n
[
e
]
&&
(
n
[
e
]
=!
0
)}).
forEach
(
function
(
t
){
e
.
cminstance
.
on
(
t
,
function
(){
for
(
var
n
=
arguments
.
length
,
r
=
Array
(
n
),
o
=
0
;
o
<
n
;
o
++
)
r
[
o
]
=
arguments
[
o
];
e
.
$emit
.
apply
(
e
,[
t
].
concat
(
r
));
var
i
=
t
.
replace
(
/
([
A-Z
])
/g
,
"-$1"
).
toLowerCase
();
i
!==
t
&&
e
.
$emit
.
apply
(
e
,[
i
].
concat
(
r
))})});
this
.
$emit
(
"ready"
,
this
.
codemirror
),
this
.
unseenLineMarkers
(),
this
.
refresh
()},
refresh
:
function
(){
var
e
=
this
;
this
.
$nextTick
(
function
(){
e
.
cminstance
.
refresh
()})},
destroy
:
function
(){
var
e
=
this
.
cminstance
.
doc
.
cm
.
getWrapperElement
();
e
&&
e
.
remove
&&
e
.
remove
()},
handerCodeChange
:
function
(
e
){
if
(
e
!==
this
.
cminstance
.
getValue
()){
var
t
=
this
.
cminstance
.
getScrollInfo
();
this
.
cminstance
.
setValue
(
e
),
this
.
content
=
e
,
this
.
cminstance
.
scrollTo
(
t
.
left
,
t
.
top
)}
this
.
unseenLineMarkers
()},
unseenLineMarkers
:
function
(){
var
e
=
this
;
void
0
!==
this
.
unseenLines
&&
void
0
!==
this
.
marker
&&
this
.
unseenLines
.
forEach
(
function
(
t
){
var
n
=
e
.
cminstance
.
lineInfo
(
t
);
e
.
cminstance
.
setGutterMarker
(
t
,
"breakpoints"
,
n
.
gutterMarkers
?
null
:
e
.
marker
())})},
switchMerge
:
function
(){
var
e
=
this
.
cminstance
.
doc
.
history
,
t
=
this
.
cminstance
.
doc
.
cleanGeneration
;
this
.
options
.
value
=
this
.
cminstance
.
getValue
(),
this
.
destroy
(),
this
.
initialize
(),
this
.
cminstance
.
doc
.
history
=
e
,
this
.
cminstance
.
doc
.
cleanGeneration
=
t
}},
mounted
:
function
(){
this
.
initialize
()},
beforeDestroy
:
function
(){
this
.
destroy
()}}},
function
(
e
,
t
,
n
){
"use strict"
;
Object
.
defineProperty
(
t
,
"__esModule"
,{
value
:
!
0
});
var
r
=
n
(
1
),
o
=
n
.
n
(
r
);
for
(
var
i
in
r
)[
"default"
,
"default"
].
indexOf
(
i
)
<
0
&&
function
(
e
){
n
.
d
(
t
,
e
,
function
(){
return
r
[
e
]})}(
i
);
var
s
=
n
(
5
),
c
=
n
(
4
),
a
=
c
(
o
.
a
,
s
.
a
,
!
1
,
null
,
null
,
null
);
t
.
default
=
a
.
exports
},
function
(
e
,
t
,
n
){
"use strict"
;
function
r
(
e
){
return
e
&&
e
.
__esModule
?
e
:{
default
:
e
}}
Object
.
defineProperty
(
t
,
"__esModule"
,{
value
:
!
0
}),
t
.
install
=
t
.
codemirror
=
t
.
CodeMirror
=
void
0
;
var
o
=
n
(
0
),
i
=
r
(
o
),
s
=
n
(
2
),
c
=
r
(
s
),
a
=
window
.
CodeMirror
||
i
.
default
,
u
=
function
(
e
,
t
){
t
&&
(
t
.
options
&&
(
c
.
default
.
props
.
globalOptions
.
default
=
function
(){
return
t
.
options
}),
t
.
events
&&
(
c
.
default
.
props
.
globalEvents
.
default
=
function
(){
return
t
.
events
})),
e
.
component
(
c
.
default
.
name
,
c
.
default
)},
l
=
{
CodeMirror
:
a
,
codemirror
:
c
.
default
,
install
:
u
};
t
.
default
=
l
,
t
.
CodeMirror
=
a
,
t
.
codemirror
=
c
.
default
,
t
.
install
=
u
},
function
(
e
,
t
){
e
.
exports
=
function
(
e
,
t
,
n
,
r
,
o
,
i
){
var
s
,
c
=
e
=
e
||
{},
a
=
typeof
e
.
default
;
"object"
!==
a
&&
"function"
!==
a
||
(
s
=
e
,
c
=
e
.
default
);
var
u
=
"function"
==
typeof
c
?
c
.
options
:
c
;
t
&&
(
u
.
render
=
t
.
render
,
u
.
staticRenderFns
=
t
.
staticRenderFns
,
u
.
_compiled
=!
0
),
n
&&
(
u
.
functional
=!
0
),
o
&&
(
u
.
_scopeId
=
o
);
var
l
;
if
(
i
?(
l
=
function
(
e
){
e
=
e
||
this
.
$vnode
&&
this
.
$vnode
.
ssrContext
||
this
.
parent
&&
this
.
parent
.
$vnode
&&
this
.
parent
.
$vnode
.
ssrContext
,
e
||
"undefined"
==
typeof
__VUE_SSR_CONTEXT__
||
(
e
=
__VUE_SSR_CONTEXT__
),
r
&&
r
.
call
(
this
,
e
),
e
&&
e
.
_registeredComponents
&&
e
.
_registeredComponents
.
add
(
i
)},
u
.
_ssrRegister
=
l
):
r
&&
(
l
=
r
),
l
){
var
f
=
u
.
functional
,
d
=
f
?
u
.
render
:
u
.
beforeCreate
;
f
?(
u
.
_injectStyles
=
l
,
u
.
render
=
function
(
e
,
t
){
return
l
.
call
(
t
),
d
(
e
,
t
)}):
u
.
beforeCreate
=
d
?[].
concat
(
d
,
l
):[
l
]}
return
{
esModule
:
s
,
exports
:
c
,
options
:
u
}}},
function
(
e
,
t
,
n
){
"use strict"
;
var
r
=
function
(){
var
e
=
this
,
t
=
e
.
$createElement
,
n
=
e
.
_self
.
_c
||
t
;
return
n
(
"div"
,{
staticClass
:
"vue-codemirror"
,
class
:{
merge
:
e
.
merge
}},[
e
.
merge
?
n
(
"div"
,{
ref
:
"mergeview"
}):
n
(
"textarea"
,{
ref
:
"textarea"
,
attrs
:{
name
:
e
.
name
,
placeholder
:
e
.
placeholder
}})])},
o
=
[],
i
=
{
render
:
r
,
staticRenderFns
:
o
};
t
.
a
=
i
}])});
\ No newline at end of file
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