Advertisement
Guest User

Untitled

a guest
May 24th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. (function ($) {
  2.  
  3. $('#edit-body-wrapper').hide();
  4.  
  5. (function Forever(){
  6.  
  7. var title = $('#edit-title-0-value').val();
  8.  
  9. if (title != '') {
  10. $('#edit-body-wrapper').slideDown(1500);
  11. }
  12. // slides down and shows the body field in 1.5 secs if the title field is not empty
  13.  
  14. else if (title == '') {
  15. $('#edit-body-wrapper').slideUp(1500);
  16. // slides up and hides the body field in 1.5 secs if title is empty
  17. }
  18.  
  19. setTimeout(Forever, 1);
  20.  
  21. })();
  22.  
  23. })(jQuery);
  24.  
  25. js:
  26. js/custom.js: {}
  27.  
  28. node-form:
  29. version: VERSION
  30. css:
  31. layout:
  32. css/layout/node-add.css: {}
  33. dependencies:
  34. - node/form
  35. js:
  36. js/custom.js: {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement