Marek Romanowski

Results 9 comments of Marek Romanowski

# Screenshots (Firefox) ## Main page ![main_page_dark](https://user-images.githubusercontent.com/710664/171748795-53f6618d-1243-405c-88c3-e2d332bbf8b5.png) ## Reference ![reference_dark](https://user-images.githubusercontent.com/710664/171748797-fec326a3-9255-4099-8308-de73db74b5bc.png) ## Documentation ![docs_dark](https://user-images.githubusercontent.com/710664/171748798-d9ee2433-a11f-4861-877a-c51f9781f499.png)

`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:...

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...