Skip to content

Instantly share code, notes, and snippets.

@mitchmac
Created April 13, 2013 00:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mitchmac/5376222 to your computer and use it in GitHub Desktop.
Save mitchmac/5376222 to your computer and use it in GitHub Desktop.
Prettify Islandora URL colons
(function ($) {
Drupal.behaviors.urlPretty = {
attach: function (context, settings) {
$("[class^=islandora] a").each(function() {
$(this).attr("href", this.href.replace("%3A", ":"));
});
}
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment