Removed test date.

This commit is contained in:
Nedyalko Nikolov
2015-04-17 16:29:40 +03:00
parent 593fdb4826
commit b2e26a4154

View File

@ -80,7 +80,7 @@ var calculateInSampleSize = function (imageWidth, imageHeight, reqWidth, reqHeig
var createDateTimeStamp = function() {
var result = "";
var date = new Date(2015, 3, 3);
var date = new Date();
result = (date.getDate() < 10 ? "0" + date.getDate().toString() : date.getDate().toString())+
((date.getMonth() + 1) < 10 ? "0" + (date.getMonth() + 1).toString() : (date.getMonth() + 1).toString()) +
date.getFullYear().toString() +