Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Filter which sheets get parsed #277

Closed
wants to merge 1 commit into from
Closed

Conversation

MrLeebo
Copy link

@MrLeebo MrLeebo commented May 7, 2014

This PR adds a global respondJsSheetFilter function that you can set to tell respond.js which sheets to parse. It defaults to return true; which will parse all of them.

Otherwise you can define it however you need, say with a regex:

window.respondJsSheetFilter = function(req) {
    return /some_regex/.test(req.href);
}

To only parse sheets that match a given pattern. Just define respondJsSheetFilter before you load respond.js.

As for why I added this... While rendering some maps with VML overlays for IE8, for some reason having respond.js loaded caused the overlays to not render. I'm no expert in VML so this probably isn't the most correct solution, but I worked around the problem by having respond.js only parse the css files with media queries in them.

@MrLeebo
Copy link
Author

MrLeebo commented Sep 24, 2018

I've lost interest in this.

@MrLeebo MrLeebo closed this Sep 24, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant