Guest User

Untitled

a guest
Apr 20th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. // put the view editing Javascript logic in a static .js file:
  2.  
  3. MyApp = {
  4. onCreateReview: function(flash, newReviewsCount, reviewPartial) {
  5. $("#new_review").before('<div id="flash_notice">' + flash + '</div>');
  6. $("#reviews_count").html(newReviewsCount);
  7. $("#reviews").append(reviewPartial);
  8. $("#new_review")[0].reset();
  9. }
  10. };
Add Comment
Please, Sign In to add comment