ClockFace_menu: remove old options exports

pull/1931/head
Richard de Boer 2022-06-07 21:29:18 +02:00
parent 994d9f2a08
commit aded08293f
No known key found for this signature in database
GPG Key ID: 8721727971871937
1 changed files with 1 additions and 12 deletions

View File

@ -24,14 +24,3 @@ exports.addItems = function(menu, callback, items) {
}
});
};
// legacy boolean options
exports.showDate =
exports.loadWidgets =
function(value, callback) {
if (value === undefined) value = true;
return {
value: !!value,
onchange: v=>callback(v),
};
};