Index: trunk/phase3/skins/common/wikibits.js |
— | — | @@ -518,7 +518,7 @@ |
519 | 519 | var ts_image_down = "sort_down.gif"; |
520 | 520 | var ts_image_none = "sort_none.gif"; |
521 | 521 | var ts_europeandate = wgContentLanguage != "en"; // The non-American-inclined can change to "true" |
522 | | -var ts_alternate_row_colors = true; |
| 522 | +var ts_alternate_row_colors = false; |
523 | 523 | var SORT_COLUMN_INDEX; |
524 | 524 | |
525 | 525 | function sortables_init() { |
— | — | @@ -661,7 +661,9 @@ |
662 | 662 | } |
663 | 663 | span.innerHTML = arrowHTML; |
664 | 664 | |
665 | | - ts_alternate(table); |
| 665 | + if (ts_alternate_row_colors) { |
| 666 | + ts_alternate(table); |
| 667 | + } |
666 | 668 | } |
667 | 669 | |
668 | 670 | function ts_dateToSortKey(date) { |
Index: trunk/phase3/CREDITS |
— | — | @@ -43,6 +43,7 @@ |
44 | 44 | * Jeremy Baron |
45 | 45 | * Louperivois |
46 | 46 | * Max Semenik |
| 47 | +* Mike Horvath |
47 | 48 | * Mormegil |
48 | 49 | * RememberTheDot |
49 | 50 | * Soxred93 |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -173,6 +173,8 @@ |
174 | 174 | Use a separate database connection for the objectcache table to avoid |
175 | 175 | long-lasting locks on that table. |
176 | 176 | * Respect file restrictions in the file history list |
| 177 | +* (bug 15399) Odd/even classes on sortable tables' rows could be slow for large |
| 178 | + tables, and have been disabled by default. |
177 | 179 | |
178 | 180 | |
179 | 181 | === API changes in 1.14 === |