Bug #962
Load CSS and Javascript in succession
| Status: | Rejected | Start date: | 05/23/2010 | |
|---|---|---|---|---|
| Priority: | Normal | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | Javascript | |||
| Target version: | - | |||
| Reproducibility: | Always | Database Type: | ||
| Reported In MyBB Version: | 1.6.0 | Database Version: | ||
| PHP Version: | SQA assignments: | |||
| Browser: |
Description
If we were to load CSS and JavaScript in a row, it can open most modern browsers simultaneously. This would enable us to build each page a little faster.
Example:
--css1--
--css2--
--css3--
--javascript1--
--javascript2--
--javascript3--
False:
--css1--
--css2--
--javascript1--
--css3--
--javascript2--
--javascript3--
History
#1 Updated by Michael Malin about 2 years ago
http://code.google.com/intl/de/speed/page-speed/docs/rtt.html#PutStylesBeforeScripts
We could collect all css sheets and give them out.
Or we could make a css-template.
Or we could make a array.
#2 Updated by Doug Sisk about 2 years ago
- Status changed from New to Rejected
This is not a bug. This is simply a suggestion.
#3 Updated by Stefan T. about 2 years ago
And it is not easy to implement...