Advertisement
Guest User

Untitled

a guest
Dec 6th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. createMovie(movieName, directorName, posterUrl, movieReview){
  2.         KinveyRequester.createMovie(movieName, directorName, posterUrl, movieReview)
  3.             .then(KinveyRequester.firstLike(movieName))
  4.             .then(createMovieSuccess.bind(this));
  5.  
  6.         function createMovieSuccess(){
  7.             //KinveyRequester.firstLike(movieName);
  8.             this.showInfo("Movie Created");
  9.             this.showMoviesView();
  10.         }
  11.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement