Marek Romanowski
Marek Romanowski
# Screenshots (Firefox) ## Main page  ## Reference  ## Documentation 
`left = -offsetWidth` is problematic here
I have ugly workaround - modifies select2.js, not angular... I've changed conditions in lines 2451 and 3235 ``` if (arguments.length === 0) { ``` to ``` if (arguments.length === 0...
Still works for me, only line numbers changed. Have to look for: ``` // multi data: function(values, triggerChange) { var self=this, ids, old; if (arguments.length === 0) { ``` and:...
Could you share a stacktrace?
If you reference generated class in interface, that won't work. You'll need to create another interface that is used in `HasBar` and use it as a return type: ```java protocol...
[This test](https://github.com/tunguski/interfacer/blob/96bf92df1b6d878ef2ea9ac29b68ab225e189200/use-plugin/src/test/java/pl/matsuo/interfacer/showcase/TestGeneratedResources.java#L20) suggests adding interfaces with methods returing other interfaces should work. Could you post your maven config for the plugin? Is `IBar` defined in same source folder as `HasBar`?...
I've checked your example. First of all `interfaceDirectory` and `scanDirectory` should point to source roots (not subdirectories representing java packages), e.g.: `file('src/main/java')` not `file('src/main/java/com/foobar/test')`. After fixing it I've spotted that...
I am not sure I understand - what would be the difference between `interfacePackages = 'com.company.schema.*'` and `interfacePackage = 'com.company.schema'`? If you need recursive scan of interfaces in subpackages, then...