Guest User

Untitled

a guest
May 17th, 2018
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <script>
  2. var value = "hello world";
  3. // or overwrite value in your callback function ...
  4. this.scope.mdown = function() { return "1"; }
  5. this.scope.mup = function() { return "0"; }
  6. this.scope.mleave = function() { return "0"; }
  7. </script>
  8. <md-button class="vibrate filled touched bigfont rounded"
  9. style="background-color:#c0392b"
  10. ng-mousedown="send({payload:mdown()})"
  11. ng-mouseup="send({payload:mup()})"
  12. ng-mouseleave="send({payload:mleave()})">
  13. <i class="fa fa-repeat" aria-hidden="true"></i>
  14. CW<br/>button
  15. </md-button>
Add Comment
Please, Sign In to add comment