Skip to content

Instantly share code, notes, and snippets.

@ncammarata
Created February 12, 2014 21:44
Show Gist options
  • Select an option

  • Save ncammarata/8965148 to your computer and use it in GitHub Desktop.

Select an option

Save ncammarata/8965148 to your computer and use it in GitHub Desktop.
// want
var setPostTitle = function($id, title) {
$firebase(base + "/posts/" + $id).$set({ title: title });
}
// doing now
var setPostTitle = function($id, title) {
post = $firebase(base + "/posts/" + $id);
post.title = title;
post.$save();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment