[Pkg-javascript-commits] [dojo] 17/23: Squashed commit of the following:
David Prévot
taffit at moszumanska.debian.org
Sun Sep 14 16:23:12 UTC 2014
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to annotated tag 1.9.4
in repository dojo.
commit e6cc7c169c4cb5ec41d679f8f337d241041a5996
Author: Some Contributor <some at example.com>
Date: Mon Jul 28 10:44:08 2014 -0400
Squashed commit of the following:
commit 1f58495619b3d8eae3df0a6f7e01d205cea14fc7
Author: Jared Jurkiewicz <jared.jurkiewicz at gmail.com>
Date: Thu Jun 26 11:03:00 2014 -0400
Fix issue with parentNode as null, fixes #18130
(cherry picked from commit a69c33ce3a88417995e6b5086f2648d6492e3616)
---
request/iframe.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/request/iframe.js b/request/iframe.js
index a7576ac..2bf71d3 100644
--- a/request/iframe.js
+++ b/request/iframe.js
@@ -179,7 +179,7 @@ define([
var parentNode = formNode;
do{
parentNode = parentNode.parentNode;
- }while(parentNode !== win.doc.documentElement);
+ }while(parentNode && parentNode !== win.doc.documentElement);
// Append the form node or some browsers won't work
if(!parentNode){
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/dojo.git
More information about the Pkg-javascript-commits
mailing list