moment/src/qml/EventHandlers/app.js

12 lines
266 B
JavaScript
Raw Normal View History

2019-07-08 13:52:41 +10:00
// Copyright 2019 miruka
// This file is part of harmonyqml, licensed under LGPLv3.
2019-06-27 16:36:31 +10:00
function onExitRequested(exit_code) {
Qt.exit(exit_code)
}
function onCoroutineDone(uuid, result) {
py.pendingCoroutines[uuid](result)
delete pendingCoroutines[uuid]
}