Created
January 12, 2017 21:46
-
-
Save luckyruby/005e8c96f0a4030e3f7bffdc24b2114b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).on "change", ".paid_checkbox", -> | |
url = $(this).data('paid-url') | |
if $(this).is(":checked") | |
box = confirm "Are you sure you want to mark as paid?" | |
if box is true | |
$.get url, { paid: "1"} | |
else | |
$(this).prop "checked", false | |
else | |
box = confirm "Are you sure you want to mark as unpaid?" | |
if box is true | |
$.get url, { paid: "0"} | |
else | |
$(this).prop "checked", true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment