Guest User

Untitled

a guest
Apr 25th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. // Useful way to go about binding things under Jira plugins
  2.  
  3. (function(){
  4. JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e) {
  5. bindMethod();
  6. });
  7.  
  8. function bindMethod(context) {
  9. AJS.$("#somebutton").click(function() {
  10. console.log("button says hello");
  11. });
  12. }
  13.  
  14. })(jQuery)
Add Comment
Please, Sign In to add comment