Skip to content

Instantly share code, notes, and snippets.

View Solstice1557's full-sized avatar

Salavat Gainetdinov Solstice1557

  • Front
  • Ufa, Russia
View GitHub Profile
angular.module('app', []).directive('ngDebounce', function($timeout) {
return {
restrict: 'A',
require: 'ngModel',
priority: 99,
link: function(scope, elm, attr, ngModelCtrl) {
if (attr.type === 'radio' || attr.type === 'checkbox') return;
elm.unbind('input');