(id, text)
| 6 | var Utils = require('select2/utils'); |
| 7 | |
| 8 | var UserDefinedType = function (id, text) { |
| 9 | var self = this; |
| 10 | |
| 11 | self.id = id; |
| 12 | self.text = text; |
| 13 | |
| 14 | return self; |
| 15 | }; |
| 16 | |
| 17 | var arrayOptions = new Options({ |
| 18 | data: [ |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…