Truelab angular modules.
For docs, demos, api reference please visit http://truelab.github.io/angular-truelab.
Put this line under the dependencies key of your bower.json file :
"dependencies" : {
// ...
"angular-truelab": "https://github.com/truelab/angular-truelab.git#dist"
// ...
}
and run :
bower install
<!doctype html>
<html ng-app="myApp">
<head></head>
<body>
<script src="js/jquery.min.js"></script><!-- !!! includes jquery !!! -->
<script src="js/lodash.min.js"></script><!-- !!! includes lodash !!! -->
<script src="js/angular.min.js"></script>
<script src="js/angular-truelab.min.js"></script>
<script>
// ...and add 'truelab' as a dependency
var myApp = angular.module('myApp', ['truelab']);
</script>
</body>
</html>
...todo...
...todo...