From 480006917520b5e040088073c61b6f8844c51a2c Mon Sep 17 00:00:00 2001 From: Don Cullen Date: Sun, 22 Jul 2012 22:23:50 -0700 Subject: [PATCH 1/3] Fix for Chrome ADBlock plugin causing error (404 not found) --- src/flexie.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flexie.js b/src/flexie.js index 631deea..bcff185 100755 --- a/src/flexie.js +++ b/src/flexie.js @@ -1329,7 +1329,7 @@ var Flexie = (function (win, doc) { for (i = 0, j = stylesheets.length; i < j; i++) { stylesheet = stylesheets[i]; - if (stylesheet) { + if (stylesheet && stylesheet.href !== 'data:text/css,') { url = resolveUrl(stylesheet.href, baseUrl); if (url) { From a954ade5151bc9dd743409e9f8e95b2b908a56c3 Mon Sep 17 00:00:00 2001 From: Don Cullen Date: Sun, 20 Nov 2016 15:50:24 -0600 Subject: [PATCH 2/3] Update README.md --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7c7481a..7f267c0 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ Cross-browser support for the [CSS3 Flexible Box Model](http://www.w3.org/TR/css3-flexbox/). Check out [The Playground](http://flexiejs.com/playground/) to see it in action. -# Flexie v1.0.3 [![](http://stillmaintained.com/doctyper/flexie.png)](http://stillmaintained.com/doctyper/flexie) +# Flexie v1.0.4 [![](http://stillmaintained.com/doctyper/flexie.png)](http://stillmaintained.com/doctyper/flexie) + +## Latest update + +* Forked & fixed error resulting from a conflict between adblockers and flexie. ## Browser Support * IE 6-9 From 4127833793101ba818b16c72df32cacdc1c90753 Mon Sep 17 00:00:00 2001 From: Don Cullen Date: Sun, 20 Nov 2016 15:50:37 -0600 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7f267c0..e984a9b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Cross-browser support for the [CSS3 Flexible Box Model](http://www.w3.org/TR/css3-flexbox/). Check out [The Playground](http://flexiejs.com/playground/) to see it in action. # Flexie v1.0.4 [![](http://stillmaintained.com/doctyper/flexie.png)](http://stillmaintained.com/doctyper/flexie) -## Latest update +## Latest updates * Forked & fixed error resulting from a conflict between adblockers and flexie.