Skip to content

Instantly share code, notes, and snippets.

@GeertVL-zz
Created August 27, 2013 19:58
Show Gist options
  • Save GeertVL-zz/6358331 to your computer and use it in GitHub Desktop.
Save GeertVL-zz/6358331 to your computer and use it in GitHub Desktop.
mymodule.directive('nullIfEmpty', [function() {
return {
require: 'ngModel',
link: function(scope, elm, attr, ctrl) {
ctrl.$parsers.unshift(function(value) {
return value === '' ? null : value;
});
}
};
}]
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment