Sha256: ae5999e0e8a722a596f353a592d578ad97a3cc585566c2c40d242ef7cbd2019b
Contents?: true
Size: 772 Bytes
Versions: 27
Compression:
Stored size: 772 Bytes
Contents
$(window).ready -> $('body').on 'click', '.btn-item', -> $(this).find('i').html('hourglass_full') $('body').on 'mouseenter', '.btn-item-delete', -> $(this).find('i').html('remove') $(this).addClass("btn-danger").removeClass("btn-primary") $('body').on 'mouseleave', '.btn-item-delete', -> $(this).find('i').html('check') $(this).addClass("btn-primary").removeClass("btn-danger") $('body').on 'click', '.follow-updater', -> $(this).closest('form').find('#card_update_all_users').val 'true' $('body').on 'submit', '.edit-view.SELF-Xfollow_default .card-form', -> confirmer = $(this).find '.confirm_update_all-view' if confirmer.is ':hidden' $(this).find('.follow-updater').show() confirmer.show 'blind' false
Version data entries
27 entries across 27 versions & 2 rubygems