update threads.js version

pull/3/merge
jmoenig 2015-06-25 15:30:58 +02:00
rodzic c95347a6b0
commit f4ff1056ea
1 zmienionych plików z 6 dodań i 7 usunięć

Wyświetl plik

@ -83,7 +83,7 @@ ArgLabelMorph, localize, XML_Element, hex_sha512*/
// Global stuff //////////////////////////////////////////////////////// // Global stuff ////////////////////////////////////////////////////////
modules.threads = '2015-May-01'; modules.threads = '2015-June-25';
var ThreadManager; var ThreadManager;
var Process; var Process;
@ -2641,7 +2641,8 @@ Process.prototype.reportTimer = function () {
// Process Dates and times in Snap // Process Dates and times in Snap
Process.prototype.reportDate = function (datefn) { Process.prototype.reportDate = function (datefn) {
var inputFn = this.inputOption(datefn), var currDate, func, result,
inputFn = this.inputOption(datefn),
// Map block options to built-in functions // Map block options to built-in functions
dateMap = { dateMap = {
'year' : 'getFullYear', 'year' : 'getFullYear',
@ -2655,16 +2656,14 @@ Process.prototype.reportDate = function (datefn) {
}; };
if (!dateMap[inputFn]) { return ''; } if (!dateMap[inputFn]) { return ''; }
currDate = new Date();
var currDate = new Date(), func = dateMap[inputFn];
func = dateMap[inputFn], result = currDate[func]();
result = currDate[func]();
// Show months as 1-12 and days as 1-7 // Show months as 1-12 and days as 1-7
if (inputFn === 'month' || inputFn === 'day of week') { if (inputFn === 'month' || inputFn === 'day of week') {
result += 1; result += 1;
} }
return result; return result;
}; };