Skip to content
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

Proxy some static methods to instance methods #187

Closed
accolver opened this issue Sep 22, 2014 · 0 comments
Closed

Proxy some static methods to instance methods #187

accolver opened this issue Sep 22, 2014 · 0 comments
Assignees
Milestone

Comments

@accolver
Copy link

Change something like

var document = Document.get(doc.id);
Document.update(document.id, { field: 'here' });

to....

var document = Document.get(doc.id);
document.update({ field: 'here' });
@jmdobry jmdobry added this to the 1.0.0-rc.2 milestone Sep 23, 2014
@jmdobry jmdobry self-assigned this Sep 23, 2014
jmdobry added a commit to js-data/js-data that referenced this issue Sep 23, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants