Skip to content

Commit

Permalink
FIX: IE8 support in jquery.ondemand.js (fixes #2872)
Browse files Browse the repository at this point in the history
  • Loading branch information
kinglozzer committed Feb 19, 2014
1 parent 0f1ae75 commit a681bd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion javascript/jquery-ondemand/jquery.ondemand.js
Expand Up @@ -16,7 +16,7 @@
(function($){

var decodePath = function(str) {
return str.replace(/%2C/g,',').replace(/\&/g, '&').trim();
return str.replace(/%2C/g,',').replace(/\&/g, '&').replace(/^\s+|\s+$/g, '');
};

$.extend({
Expand Down

0 comments on commit a681bd7

Please sign in to comment.