From 68449884b431a4e43fef47fc206d3e808d69b03a Tue, 22 May 2012 13:28:47 +0200
From: Michael Wyraz <michael.wy...@evermind.de>
Date: Tue, 22 May 2012 13:25:49 +0200
Subject: [PATCH] TAP5-1907 ie9 javascript error when partial render includes stylesheets

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 f97fb03..22ade78 100644
--- a/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js
+++ b/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js
@@ -2023,7 +2023,7 @@

         var _ = T5._;

- var loaded = _(document.scripts).chain().pluck("src").without("").map(this.rebuildURLIfIE).value(); + var loaded = _(document.scripts).chain().pluck("src").without("").without(null).map(this.rebuildURLIfIE).value();

         var self = this;

@@ -2050,7 +2050,7 @@

         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) {

--
Mit freundlichen Grüßen / Regards

Michael Wyraz

evermind GmbH
Schorlemmerstraße 1
04155 Leipzig

Tel.:       +49 (0)341-25 39 66 - 0
Fax:        +49 (0)341-25 39 66 - 1
Funk:       +49 (0)177-73 00 00 3
E-Mail:     michael.wy...@evermind.de

HRB: 21586
Amtsgericht Leipzig

Geschäftsführer:
Christoph Klemm
Thomas Grünert
Michael Wyraz


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tapestry.apache.org
For additional commands, e-mail: dev-h...@tapestry.apache.org

Reply via email to