Skip to content

Instantly share code, notes, and snippets.

EditTaskAssistant.prototype.popScene = function(wasCancelled) {
Mojo.Log.info("EditTaskAssistant.popScene: Entering");
if (this.config.task.name == '') {
// Don't allow a blank name to be entered
this.config.task.name = this.savedTaskProperties.name;
}
this.config.task.update();
Mojo.Controller.stageController.popScene({
lastScene: 'EditTask',
task: this.config.task,
@niksilver
niksilver / gist:a2807842fd67aabd5bfb
Last active August 29, 2015 14:05
Burn-up chart script
/**
* Google Spreadsheet script to create simple burn-up charts.
* See spreadsheet at
* https://docs.google.com/spreadsheet/ccc?key=0AgpNfbjg-OFhdGRPRjNSejFWS1dpN1VoSk5ZbkctcGc&usp=sharing
* and blog post at
* http://niksilver.com/2014/08/08/burn-up-charts-in-google-spreadsheets/
*
*/
/**