camelCase builtin labels

This commit is contained in:
azivner
2018-04-02 21:56:55 -04:00
parent c6c76ba360
commit 6f567e3e10
11 changed files with 22 additions and 17 deletions

View File

@@ -23,7 +23,7 @@ async function executeBundle(bundle, startNote) {
const ctx = new ScriptContext(startNote, bundle.allNotes);
if (await bundle.note.hasLabel('manual_transaction_handling')) {
if (await bundle.note.hasLabel('manualTransactionHandling')) {
return await execute(ctx, script, '');
}
else {
@@ -72,7 +72,7 @@ async function getScriptBundle(note, root = true, scriptEnv = null, includedNote
return;
}
if (!root && await note.hasLabel('disable_inclusion')) {
if (!root && await note.hasLabel('disableInclusion')) {
return;
}