1.0.1 • Published 8 years ago

angular-growl-v2-webpack v1.0.1

Weekly downloads
114
License
ISC
Repository
-
Last release
8 years ago

Angular-Growl-v2-Webpack

The Basics

Installation

Within your webpack module include CSS & JS

var angular = require('angular');

require('angular-growl-v2-webpack/src/growl.css')
ngModule = angular.module('myModule', [
        require('angular-growl-v2-webpack')
    ])
require('./otherComponents')(ngModule);
module.exports = ngModule.name;

In your index.html add the growl directive

<body>
    <div growl></div>
</body>

See the link above for indepth customization instructions.