-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sync options #13
Comments
Yep thats what I meant var getUrl = function (object) {
if (options && options.url) {
return _.isFunction(options.url) ? options.url() : options.url;
}
if (!(object && object.url)) return null;
return _.isFunction(object.url) ? object.url() : object.url;
};
|
didn't read the end of the msg ill do a pull request |
Merged
Awesome. !thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
iobind.sync does use options.url
what do you think about adding this piece of code taken from Backbone.Sync to enable this feature
The text was updated successfully, but these errors were encountered: