Advertisement
Guest User

Untitled

a guest
Jul 30th, 2014
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. $(function () {
  2. if ($(".flag-dialog").length > 0) { // check if this block is even necessary for the current page
  3. $(document).on("click", ".flag-dialog button.c", function () {
  4. ui.modalDialog.close(".flag-dialog");
  5. return false;
  6. });
  7. // more code...
  8. }
  9. });
  10. $(function () {
  11. if ($(".comment-section").length > 0) { // check if this block is even necessary for the current page
  12. $(document).on("click", ".comment-section button.s", function () {
  13. // ....
  14. });
  15. // more code...
  16. }
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement