Home | History | Annotate | Download | only in flot

Lines Matching defs:date

28 	// Returns a string with the date d formatted according to fmt.
107 // zone the client happens to be in we need a date-like object independent
120 date: d
132 var props = ["Date", "Day", "FullYear", "Hours", "Milliseconds", "Minutes", "Month", "Seconds"];
142 // select time zone strategy. This returns a date-like object tied to the
147 return new Date(ts);
149 return makeUtcWrapper(new Date(ts));
150 } else if (typeof timezoneJS != "undefined" && typeof timezoneJS.Date != "undefined") {
151 var d = new timezoneJS.Date();
158 return makeUtcWrapper(new Date(ts));