mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
9 lines
302 B
CoffeeScript
9 lines
302 B
CoffeeScript
angular.module("ofn.admin").directive "ofnSelect2MinSearch", ->
|
|
require: 'ngModel'
|
|
link: (scope, element, attrs, ngModel) ->
|
|
element.select2
|
|
minimumResultsForSearch: attrs.ofnSelect2MinSearch
|
|
|
|
ngModel.$formatters.push (value) ->
|
|
if (value)
|
|
element.select2('val', value); |