Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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 updates

* Forked & fixed error resulting from a conflict between adblockers and flexie.

## Browser Support
* IE 6-9
Expand Down
2 changes: 1 addition & 1 deletion src/flexie.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down