forked from OCA/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIG] website_js_below_the_fold: Migration to 12.0
- Loading branch information
Showing
6 changed files
with
29 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ This is a technical module and have no graphical interface whatsoever. | |
|
||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas | ||
:alt: Try me on Runbot | ||
:target: https://runbot.odoo-community.org/runbot/186/11.0 | ||
:target: https://runbot.odoo-community.org/runbot/186/12.0 | ||
|
||
Bug Tracker | ||
=========== | ||
|
@@ -45,6 +45,7 @@ Contributors | |
------------ | ||
|
||
* Dennis Sluijk <[email protected]> | ||
* Kaushal Prajapati <[email protected]> | ||
|
||
Do not contact contributors directly about support or help with technical issues. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
* Dennis Sluijk <[email protected]> | ||
* Kaushal Prajapati <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
This module moves Javascript assets to the bottom of the page (below the fold) | ||
preventing your website having render-blocking Javascript. | ||
|
||
When a visitor enters your website the browser will parse the HTML result. | ||
Whenever the parser encounters a script, it has to load and execute the script before it can continue parsing. | ||
So with render-blocking Javascript (e.g. in the head tag) the time to render the above the fold content increases. | ||
|
||
Without render-blocking Javascript (by e.g. loading it below the fold) the page first render occurs faster. | ||
This may result in various benefits e.g. lower bounce rate. | ||
|
||
More information: | ||
|
||
* `Render-blocking Javascript <https://developers.google.com/speed/docs/insights/BlockingJS>`_ | ||
* `Above the fold <https://en.wikipedia.org/wiki/Above_the_fold>`_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
This is a technical module and have no graphical interface whatsoever. | ||
|
||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas | ||
:alt: Try me on Runbot | ||
:target: https://runbot.odoo-community.org/runbot/186/12.0 |