Last active
June 12, 2019 19:15
-
-
Save facelordgists/ac624ecf5e592012886a696126ca16aa 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
// =========================================================== | |
// Simple toggle | |
// ---------------------------------- | |
var bool = true; | |
bool = !bool; | |
// =========================================================== | |
// Function to toggle | |
// ---------------------------------- | |
$scope.form_state.showing = false; | |
$scope.toggle = function(){ | |
$scope.form_state.showing = !$scope.form_state.showing; | |
} | |
// =========================================================== | |
// Toggling capabilities wrapped into one little object | |
// ---------------------------------- | |
$scope.form_state = { | |
showing: false, | |
show: function(){$scope.form_state.showing = true}, | |
hide: function(){$scope.form_state.showing = false}, | |
toggle: function(){ | |
$scope.form_state.showing = !$scope.form_state.showing; | |
} | |
} | |
// usage | |
$scope.form_state.toggle(); | |
$scope.form_state.hide(); | |
$scope.form_state.show(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment