Updated Branches: refs/heads/5.3 d361d5c44 -> 476968ae4
TAPT-1907: Client exception in IE9 when partial page render introduces stylesheets Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/476968ae Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/476968ae Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/476968ae Branch: refs/heads/5.3 Commit: 476968ae48360346c90ef51af4975028b547ea43 Parents: d361d5c Author: Howard M. Lewis Ship <[email protected]> Authored: Fri Aug 17 17:05:08 2012 -0700 Committer: Howard M. Lewis Ship <[email protected]> Committed: Fri Aug 17 17:05:08 2012 -0700 ---------------------------------------------------------------------- .../resources/org/apache/tapestry5/tapestry.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/476968ae/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js ---------------------------------------------------------------------- diff --git a/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js b/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js index f23a1e2..26d151a 100644 --- a/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js +++ b/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js @@ -2054,7 +2054,7 @@ Tapestry.ScriptManager = { var _ = T5._; - var loaded = _(document.styleSheets).chain().pluck("href").without("").map(this.rebuildURLIfIE).value(); + var loaded = _(document.styleSheets).chain().pluck("href").without("").without(null).map(this.rebuildURLIfIE).value(); var toLoad = _(stylesheets).chain().map( function (ss) {
