Advertisement
Guest User

Untitled

a guest
Apr 29th, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. VIDEOTITLE = 'Dystopia teaser';
  3. BODY = "This is the teaser of my new ball machine Dystopia I'm working on. Enjoy!";
  4.  
  5.  
  6. $.getJSON('/json-api/showInstructable?id='+document.URL.split('/')[4]).done(function(data){
  7. VIDEOID = data.id;
  8. STEPID = data.steps[0].id;
  9. $.post('/json-api/saveInstructable',{json: JSON.stringify({
  10.   "title": VIDEOTITLE,
  11.   "status": "PUBLISHED",
  12.   "steps": [
  13.     {
  14.       "id": STEPID,
  15.       "title": VIDEOTITLE,
  16.       "body": BODY,
  17.       "stepIndex": 0,
  18.       "files": []
  19.     }
  20.   ],
  21.   "files": [],
  22.   "collaborators": [],
  23.   "enteredContests": [],
  24.   "coverImageUpdated": false,
  25.   "duplicateTitleTest": [
  26.     "unchecked"
  27.   ],
  28.   "id": VIDEOID
  29. })});
  30.  
  31. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement