Skip to content

golyakov/angular-materialize

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

angular-materialize

angular-materialize in action http://krescruz.github.io/angular-materialize/

This library is a set of AngularJS directives which make it possible to use features from Materialize with AngularJS.

Just add the module ui.materialize to your dependencies like:

angular.module('angular-app', [
  'ui.materialize'
])

and then you are good to go.

This is not to be confused with the Angular Material project, which is a standalone Material design implementation for AngularJS.

We are on Bower, look for angular-materialize. or in NPM, look for angular-materialize.

Use with Webpack

Angular looks for jQuery and if no exists, it uses jQlite. Some directives of angular-materialize uses some jQuery methods, so be sure that Angular uses it instead of jQlite. It can be done by adding the following lines in your config.

//webpack.config.js
plugins: [
    new webpack.ProvidePlugin({
      'window.jQuery': 'jquery'
    })
  ],

then simply add to your module:

// yourModule.js
// ES6 style
import angularMaterialize from 'angular-materialize';
// OR commonjs style
var angularMaterialize = require('angular-materialize');
angular.module('yourModule', [angularMaterialize]);

About

Angularjs directives for Materialize CSS Framework https://github.com/Dogfalo/materialize

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 69.0%
  • CSS 25.4%
  • JavaScript 5.6%