Franciszek S Wawrzak
Franciszek S Wawrzak
followup of #834 adds support for random order when passing '?' as order_by parameter. http://lucene.apache.org/solr/4_3_1/solr-core/org/apache/solr/schema/RandomSortField.html
Set getter to non nullable to match api: https://api.dart.dev/stable/2.17.0/dart-html/HttpRequest/responseHeaders.html
Current implementation of `replaceWith` is missing setting `_nextNode` and `_previousNode` for siblings of the node argument (the one that replaces current node). It is causing tree structure issues and bugs...
According to MDN `mouse*` and `drag*` events bubble up to `Document` and `Window`: https://developer.mozilla.org/en-US/docs/Web/API/Window#bubbled_events https://developer.mozilla.org/en-US/docs/Web/API/Document#bubbled_events Also code like this was working with `dart:html`: ```dart document.onMouseMove.listen(handler); document.onDragEnd.listen(handler); ``` I am not...