Skip to content

Instantly share code, notes, and snippets.

@phloe
Created December 11, 2012 15:19
Show Gist options
  • Save phloe/4259248 to your computer and use it in GitHub Desktop.
Save phloe/4259248 to your computer and use it in GitHub Desktop.
_amoeba(function ($, $$, _) {
var link = $("link[href$='base-static.css']");
if (link) {
link.el.href = link.el.href.replace("-static.css", ".css");
var viewport = $("meta[name='viewport']");
if (!viewport) {
viewport = _.create("meta", {name: "viewport"}, document.head, "top");
}
else {
viewport.el.content = "width=device-width";
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment