Skip to content

Instantly share code, notes, and snippets.

View govindjhag's full-sized avatar

Govind Kumar Jha govindjhag

  • Radikal-lab
  • Kolkata
View GitHub Profile
@govindjhag
govindjhag / materialSelect.js
Created February 29, 2016 12:23 — forked from viniciussalvati/materialSelect.js
Directive for the select in Materialize CSS https://github.com/Dogfalo/materialize
(function () {
'use strict';
angular
.module('app')
.directive('select', materialSelect);
materialSelect.$inject = ['$timeout'];
function materialSelect($timeout) {