angular-text-toggle
v1.0.3
Published
A simple boolean text control with undo support
Downloads
4
Readme
angular-text-toggle
A simple boolean text control with undo support. Try it!
Installing
# npm
$ npm install angular-text-toggle
# bower
$ bower install angular-text-toggle
Setup
// node module exports the string 'text-toggle' for convenience
angular.module('myApp', [
require('angular-text-toggle')
]);
// otherwise, include the code first then the module name
angular.module('myApp', [
'angular-text-toggle'
]);
API
text-toggle provides 3 directives for composing toggle controls.
textToggle
Set the attribute toggle
to the property that will be toggled by the control.
toggleAction
The contents of the <toggle-action>
tag will be initial, clickable state of the control.
toggleConfirmation
The contents of the <toggle-confirmation>
tag will be displayed when the toggle value is true
. Set the undo
attribute to a string to change the undo text (defaults to "Undo").