Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
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
alecs_myu
erp5
Commits
5811817e
Commit
5811817e
authored
Apr 11, 2018
by
Valentin Benozillo
Committed by
Xiaowu Zhang
May 03, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[erp5_core] Add auto maximize feature for gadget_editor
parent
4a1570d5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
4 deletions
+14
-4
product/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/gadget_editor.js.js
...inTemplateItem/portal_skins/erp5_core/gadget_editor.js.js
+14
-4
No files found.
product/ERP5/bootstrap/erp5_core/SkinTemplateItem/portal_skins/erp5_core/gadget_editor.js.js
View file @
5811817e
...
...
@@ -42,7 +42,7 @@ lockGadgetInQueue, unlockGadgetInQueue, unlockGadgetInFailedQueue*/
});
})
.
declareMethod
(
'
render
'
,
function
(
options
)
{
var
state_dict
=
{
value
:
options
.
value
||
""
,
editor
:
options
.
editor
,
...
...
@@ -105,7 +105,7 @@ lockGadgetInQueue, unlockGadgetInQueue, unlockGadgetInFailedQueue*/
if
((
gadget
.
state
.
editable
&&
(
editor_dict
.
hasOwnProperty
(
gadget
.
state
.
editor
)))
||
(
!
gadget
.
state
.
editable
&&
gadget
.
state
.
editor
===
'
fck_editor
'
)
||
(
gadget
.
state
.
editor
==
'
pdf
'
))
{
(
gadget
.
state
.
editor
==
=
'
pdf
'
))
{
queue
.
push
(
function
()
{
return
gadget
.
declareGadget
(
...
...
@@ -131,7 +131,7 @@ lockGadgetInQueue, unlockGadgetInQueue, unlockGadgetInFailedQueue*/
if
((
gadget
.
state
.
editable
&&
(
editor_dict
.
hasOwnProperty
(
gadget
.
state
.
editor
)))
||
(
!
gadget
.
state
.
editable
&&
gadget
.
state
.
editor
===
'
fck_editor
'
)
||
(
gadget
.
state
.
editor
==
'
pdf
'
))
{
(
gadget
.
state
.
editor
==
=
'
pdf
'
))
{
queue
.
push
(
function
()
{
return
gadget
.
getDeclaredGadget
(
'
editor
'
);
...
...
@@ -139,6 +139,16 @@ lockGadgetInQueue, unlockGadgetInQueue, unlockGadgetInFailedQueue*/
.
push
(
function
(
editor_gadget
)
{
return
editor_gadget
.
render
(
gadget
.
state
);
});
if
(
modification_dict
.
maximize
===
"
auto
"
)
{
queue
.
push
(
function
()
{
return
gadget
.
getDeclaredGadget
(
"
maximize
"
);
})
.
push
(
function
(
gadget_maximize
)
{
return
gadget_maximize
.
callMaximize
(
true
);
});
}
}
else
if
(
gadget
.
state
.
editable
&&
(
gadget
.
state
.
editor
===
'
text_area
'
))
{
element
.
querySelector
(
'
textarea
'
).
value
=
gadget
.
state
.
value
;
...
...
@@ -194,4 +204,4 @@ lockGadgetInQueue, unlockGadgetInQueue, unlockGadgetInFailedQueue*/
});
}(
window
,
rJS
,
RSVP
,
document
,
FileReader
,
Blob
,
lockGadgetInQueue
,
unlockGadgetInQueue
,
unlockGadgetInFailedQueue
));
lockGadgetInQueue
,
unlockGadgetInQueue
,
unlockGadgetInFailedQueue
));
\ 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