- resize the EBS volume size from EC2 console(e.g. 8GB to 20GB)
- sudo growpart /dev/xvda 1
- sudo resize2fs /dev/xvda1 or sudo resize2fs /dev/nvme0n1p1
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
// Somewhere in your controllers for this given example | |
// Example functions | |
$scope.itemOnLongPress = function(id) { | |
console.log('Long press'); | |
} | |
$scope.itemOnTouchEnd = function(id) { | |
console.log('Touch end'); | |
} |