qmlcore icon indicating copy to clipboard operation
qmlcore copied to clipboard

QML to Javascript/HTML5 translator. Ready for Mobile, Desktop and SmartTV platforms.

Results 26 qmlcore issues
Sort by recently updated
recently updated
newest added

Declarative filtering/sorting may improve efficiency of the data update (i.e if we know that changed property does not affect sorting, we send change signal instead of remove/insert)

Currently the implementation of Behavior is written as special case in generator code. Behavior on { } However, this make it impossible to implement component like(Binding on x) in qml,...

enhancement

it has to be inside platform backend, either as part of html5 backend or dedicated gamepad backend.

Things to consider: 1. #103 /_context.fetch for adding basic static api without necessity of having a component. 2. backend.fetch implementation, compatible with fetch with backward compatible xhr callback 3. bring...

static will put functions into function object instead of prototype: ```qml class Foo { static function bar() { log('hey') } } Foo.bar() ```

http://doc.qt.io/qt-5/qtqml-syntax-objectattributes.html#default-properties

* it's called too often * maybe it should check recursiveVisible instead of visible * it's calling _tryFocus on focused child down to the bottom

After app render, will be good idea to move binded styles to style node ```javascript var styleNode = null; function createStyleNode() { var head = document.head || document.getElementsByTagName('head')[0]; var style...

enhancement
refactoring