Last active
May 16, 2016 01:46
-
-
Save matthieu-D/af073c545605adc5583a4271d950e92c 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
ionicMaterialInk.displayEffect(); | |
function cancelDrop(){ | |
document.getElementById('drop-it').classList.remove('drop') | |
} | |
$scope.toggleDrop = function (){ | |
document.getElementById('drop-it').classList.add('drop'); | |
$timeout(cancelDrop, 2000) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment