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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tristan Cavelier
erp5
Commits
b09ac1af
Commit
b09ac1af
authored
Dec 06, 2016
by
Romain Courteaud
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[erp5_web_renderjs_ui] Use a document fragment to build the page content
parent
990a3253
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
23 deletions
+20
-23
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_launcher_js.js
...mplateItem/web_page_module/rjs_gadget_erp5_launcher_js.js
+20
-23
No files found.
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_erp5_launcher_js.js
View file @
b09ac1af
...
@@ -461,29 +461,26 @@
...
@@ -461,29 +461,26 @@
.
push
(
function
(
main_gadget
)
{
.
push
(
function
(
main_gadget
)
{
// Append loaded gadget in the page
// Append loaded gadget in the page
if
(
main_gadget
!==
undefined
)
{
if
(
main_gadget
!==
undefined
)
{
return
main_gadget
.
getElement
()
var
element
=
gadget
.
props
.
content_element
,
.
push
(
function
(
fragment
)
{
content_container
=
document
.
createDocumentFragment
();
var
element
=
gadget
.
props
.
content_element
,
// content_container.className = "ui-content " +
content_container
=
document
.
createElement
(
"
div
"
);
// (gadget.props.sub_header_class || "");
content_container
.
className
=
"
ui-content
"
+
// reset subheader indicator
(
gadget
.
props
.
sub_header_class
||
""
);
delete
gadget
.
props
.
sub_header_class
;
// reset subheader indicator
delete
gadget
.
props
.
sub_header_class
;
// go to the top of the page
window
.
scrollTo
(
0
,
0
);
// go to the top of the page
window
.
scrollTo
(
0
,
0
);
// Clear first to DOM, append after to reduce flickering/manip
while
(
element
.
firstChild
)
{
// Clear first to DOM, append after to reduce flickering/manip
element
.
removeChild
(
element
.
firstChild
);
while
(
element
.
firstChild
)
{
}
element
.
removeChild
(
element
.
firstChild
);
content_container
.
appendChild
(
main_gadget
.
element
);
}
element
.
appendChild
(
content_container
);
content_container
.
appendChild
(
fragment
);
element
.
appendChild
(
content_container
);
return
updateHeader
(
gadget
);
// XXX Drop notification
return
updateHeader
(
gadget
);
// return header_gadget.notifyLoaded();
// XXX Drop notification
// return header_gadget.notifyLoaded();
});
}
}
});
});
}
}
...
...
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