Introducing Angular UI
Angular UI is a bunch of mini projects that helps you be more productive with your Angular app development. At the time of writing this book, Angular UI consisted of projects discussed in the following sections.
UI-Utils
UI-Utils is a utility package that allows you to add a wide variety of utilities into your application. The utilities are explained as follows:
- IE Shiv: This is used to allow support for custom tags in IE8 and below.
- jQuery Passthrough: The
uiJq
directive allows us to use jQuery plugins directly instead of having to create new directives to use them. - Event Binder: This allows you to bind callbacks to events that are not natively supported in AngularJS.
- Keypress: This allows you to bind events to a keypress.
- Mask: This allows you to mask data based on certain conditions set.
- Validate: This allows you to create custom validators and expressions
- Reset: This allows you to display an icon or link; if you click on it, the model will become empty.
- Scrollfix: This...