Created
April 28, 2014 02:58
-
-
Save ukyo/11360737 to your computer and use it in GitHub Desktop.
連続でクリックするのを防止するためのdirective
This file contains 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
# button or input[submit]で使うように | |
angular.module('foo', []).directive 'clickAndDisable', -> | |
link: (scope, element, attr) -> | |
element.on 'click', -> element.attr 'disabled': true |
This file contains 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
<button click-and-disable>クリックしたら押せなくなるボタン</button> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment