-
Notifications
You must be signed in to change notification settings - Fork 5
Feature/conditional asset fetch #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Codecov Report
@@ Coverage Diff @@
## master #5 +/- ##
==========================================
+ Coverage 64.39% 65.68% +1.29%
==========================================
Files 15 15
Lines 337 341 +4
Branches 49 50 +1
==========================================
+ Hits 217 224 +7
+ Misses 120 117 -3
Continue to review full report at Codecov.
|
| static pageLoaded() { | ||
| const onFragmentRenderAssets = Core.__pageConfiguration.assets.filter(asset => asset.loadMethod === RESOURCE_LOADING_TYPE.ON_PAGE_RENDER && !asset.preLoaded); | ||
| const onFragmentRenderAssets = Core.__pageConfiguration.assets.filter(asset => { | ||
| if(asset.loadMethod === RESOURCE_LOADING_TYPE.ON_PAGE_RENDER && !asset.preLoaded) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we use spaces as we used before? if (..)
cagataycali
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
No description provided.