Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
react-ag-qeditor
Overview
Overview
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
lib
react-ag-qeditor
Commits
39874107
Commit
39874107
authored
Jan 17, 2024
by
yakoff94
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
del console.log
parent
c2aa6805
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
ToolbarDrop.js
src/components/ToolbarDrop.js
+1
-1
Uploader.js
src/components/Uploader.js
+1
-1
Iframe.js
src/extensions/Iframe.js
+1
-1
Resizing.js
src/extensions/Resizing.js
+1
-1
No files found.
src/components/ToolbarDrop.js
View file @
39874107
...
...
@@ -4,7 +4,7 @@ const Select = ({ items, onChange }) => {
const
[
show
,
setShow
]
=
useState
(
false
);
const
onChangeHandler
=
(
item
)
=>
{
console
.
log
(
item
);
//
console.log(item);
}
return
(
...
...
src/components/Uploader.js
View file @
39874107
...
...
@@ -149,7 +149,7 @@ export default class Uploader extends React.Component {
}}
onStart
=
{(
a
)
=>
{
this
.
setState
({
disabledFileUpload
:
true
,
isUpload
:
true
});
console
.
log
(
'start'
);
//
console.log('start');
}}
onSuccess
=
{(
resp
,
file
)
=>
{
if
(
resp
.
state
===
'success'
&&
resp
.
file_path
)
{
...
...
src/extensions/Iframe.js
View file @
39874107
...
...
@@ -18,7 +18,7 @@ const Iframe = Node.create({
allowfullscreen
:
{
default
:
true
,
parseHTML
:
()
=>
{
console
.
log
(
this
)
//
console.log(this)
}
}
}
...
...
src/extensions/Resizing.js
View file @
39874107
...
...
@@ -29,7 +29,7 @@ export default Extension.create({
element
.
style
.
position
=
"relative"
;
// resizeLayer
console
.
log
(
'onCreate'
,
editor
);
//
console.log('onCreate', editor);
const
resizeLayer
=
document
.
createElement
(
"div"
);
resizeLayer
.
className
=
"resize-layer"
;
...
...
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