Skip to content

Commit

Permalink
fixing fragment plugins to return URI for simpler loading - closes #139
Browse files Browse the repository at this point in the history
  • Loading branch information
rodneyrehm committed Mar 8, 2014
1 parent b0e3242 commit ac93cda
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -227,6 +227,7 @@ URI.js is published under the [MIT license](http://www.opensource.org/licenses/m
## Changelog ##

* fixing [`.encodeQuery()`](http://medialize.github.io/URI.js/docs.html#static-encodeQuery) and [`.decodeQuery()`](http://medialize.github.io/URI.js/docs.html#static-decodeQuery) to respect [`URI.escapeQuerySpace`](http://medialize.github.io/URI.js/docs.html#setting-escapeQuerySpace) - ([Issue #137](https://github.com/medialize/URI.js/issues/137))
* fixing fragment plugins to return URI for simpler loading - ([Issue #139](https://github.com/medialize/URI.js/issues/139))

### 1.12.0 (January 23rd 2014) ###

Expand Down
2 changes: 1 addition & 1 deletion src/URI.fragmentQuery.js
Expand Up @@ -99,5 +99,5 @@ p.addHash = p.addFragment;
p.removeHash = p.removeFragment;

// extending existing object rather than defining something new
return {};
return URI;
}));
2 changes: 1 addition & 1 deletion src/URI.fragmentURI.js
Expand Up @@ -92,5 +92,5 @@ p.build = function(deferBuild) {
};

// extending existing object rather than defining something new
return {};
return URI;
}));

0 comments on commit ac93cda

Please sign in to comment.