You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
373 B
12 lines
373 B
function timestamp(){ |
|
// this function isn't really necessary... |
|
// just using it to show you can call a function to get a profile property value |
|
var d = new Date(); |
|
return d.getFullYear() + '-' + (d.getMonth()+1) + "-" + d.getDate() + "-" + |
|
d.getHours() + ':' + d.getMinutes() + ":" + d.getSeconds(); |
|
} |
|
|
|
var profile = { |
|
basePath:".", |
|
buildTimestamp:timestamp() |
|
};
|
|
|