Skip to content

Instantly share code, notes, and snippets.

@jahkeup
Created February 20, 2014 20:01
Show Gist options
  • Save jahkeup/9122025 to your computer and use it in GitHub Desktop.
Save jahkeup/9122025 to your computer and use it in GitHub Desktop.
angular.module("ng-select2", [ 'ng' ]).directive("ngSelect2", function($timeout) {
return {
restrict : "AE",
link : function(scope, element, attrs) {
return $timeout(function() {
return $(element).select2();
});
}
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment