- Timestamp:
- 01/14/13 06:30:45 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/scripts/Observation_class.js
r14768 r14770 18 18 ' Try something like "2013-01-08 23:05 UTC" .'); 19 19 } 20 this. utc= utc20 this.start = utc 21 21 } 22 22 else … … 86 86 Observation.prototype.toString = function() 87 87 { 88 return this.source+" ["+this.utc+"]" ; 88 if (this.source) 89 return this.task + " " + this.source+" ["+this.start+"]" ; 90 else 91 return this.task + " ["+this.start+"]" ; 92 89 93 }
Note:
See TracChangeset
for help on using the changeset viewer.