CallBackery
view release on metacpan or search on metacpan
- updated wording and translations
0.26.1 2020-01-20 15:59:33 +0100 Tobias Oetiker <tobi@oetiker.ch>
- fixed js syntax (excess ,)
0.26.0 2020-01-20 15:27:13 +0100 Tobias Oetiker <tobi@oetiker.ch>
- pop config option cancelLabel to override label on calcle button in popups
- form field option 'copyOnTap' added to copy readOnly field content to
clipboard on tap.
0.25.1 2019-12-16 09:50:38 +0100 Tobias Oetiker <tobi@oetiker.ch>
- merge translations
0.25.0 2019-12-16 09:44:32 +0100 Tobias Oetiker <tobi@oetiker.ch>
- pass the output of config.getUrlConfig under the key urlConfig to the getUserConfig backend call
and place this in the args key when building the plugin list, allowing plugins to only enable
themselves based on keys provided on the url when opening the app.
lib/CallBackery/qooxdoo/callbackery/source/class/callbackery/ui/form/renderer/NoteForm.js view on Meta::CPAN
&& item.getReadOnly()) {
var copyFailMsg = itemOptions[i].copyFailMsg
? that.xtr(itemOptions[i].copyFailMsg)
: that.tr("Select %1 and press [ctrl]+[c]", labelName);
var copySuccessMsg = itemOptions[i].copySuccessMsg
? that.xtr(itemOptions[i].copySuccessMsg)
: that.tr("%1 copied", labelName);
item.addListener('tap', function (e) {
try {
navigator.clipboard.writeText(item.getValue())
.then(function (ret) {
msg.info(that.tr("Success"), copySuccessMsg);
})
.catch(function (err) {
msg.info(that.tr("Copy failed"), copyFailMsg);
})
} catch (err) {
msg.info(that.tr("Copy failed"), copyFailMsg);
}
});
( run in 5.635 seconds using v1.01-cache-2.11-cpan-84e82930d8c )