Skip to content

Instantly share code, notes, and snippets.

@mishak87
Created September 25, 2013 13:09
Show Gist options
  • Save mishak87/6699344 to your computer and use it in GitHub Desktop.
Save mishak87/6699344 to your computer and use it in GitHub Desktop.
ko.extenders.url = function (target, option) {
var value = $.address.parameter(option);
if (value) {
target(value);
}
target.subscribe(function (value) {
$.address.parameter(option, value);
});
$.address.change(function (event) {
target(event.parameters[option]);
});
return target;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment