|
@@ -38,3 +38,9 @@ if (!window.console) {
|
|
|
if (!console.log) {
|
|
|
console.log = function(){}
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+Date.prototype.getWeek = function() {
|
|
|
+ var onejan = new Date(this.getFullYear(),0,1);
|
|
|
+ return Math.ceil((((this - onejan) / 86400000) + onejan.getDay()+1)/7);
|
|
|
+}
|