We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I know I should be reporting this as a pull request but I've made too many other changes...
kanban.html
var taskStatus = function (str) { **return str;** //str = str.replace(/(?:\r\n|\r|\n)/g, '<br>'); //if ( str.match(/### STATUS:([\s\S]*?)###/) ) { // var statmatch = str.match(/### STATUS:([\s\S]*?)###/); // // remove empty lines // str = statmatch[1].replace(/^(?=\n)$|^\s*|\s*$|\n\n+/gm, ''); // // replace line breaks with html breaks // str = str.replace(/(?:\r\n|\r|\n)/g, '<br>'); // // remove multiple html breaks // str = str.replace('<br><br>', '<br>'); // } else { str = ''; } //return str; };
app.js
var getTasksFromOutlook = function (path, restrict, sort, owner) { var i, array = []; // default restriction is to get only incomplete tasks if (restrict === undefined) { restrict = "[Complete] = false"; } **var tasks; if (restrict === "") { tasks = getOutlookFolder(path, owner).Items; } else { tasks = getOutlookFolder(path, owner).Items.Restrict(restrict); }** var count = tasks.Count; for (i = 1; i <= count; i++) { array.push({ entryID: tasks(i).EntryID, subject: tasks(i).Subject, priority: tasks(i).Importance, startdate: tasks(i).StartDate, duedate: new Date(tasks(i).DueDate), sensitivity: tasks(i).Sensitivity, categories: tasks(i).Categories, notes: taskExcerpt(tasks(i).Body, GENERAL_CONFIG.TASKNOTE_EXCERPT), **status: taskStatus(tasks(i).Status)**, oneNoteTaskID: getUserProp(tasks(i), "OneNoteTaskID"), oneNoteURL: getUserProp(tasks(i), "OneNoteURL") }); }; ...
The text was updated successfully, but these errors were encountered:
... and unfortunately I do not manage to apply this patch. Would be nice to have status updated.
Sorry, something went wrong.
No branches or pull requests
I know I should be reporting this as a pull request but I've made too many other changes...
kanban.html
app.js
The text was updated successfully, but these errors were encountered: