Skip to content

truelab/angular-truelab

Repository files navigation

angular-truelab


Truelab angular modules.

For docs, demos, api reference please visit http://truelab.github.io/angular-truelab.

Build Status devDependency Status Built with Grunt

Install

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

Usage

<!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>

Contributing

...todo...

Guidelines

...todo...