Changeset 15028 for trunk


Ignore:
Timestamp:
03/11/13 21:36:10 (12 years ago)
Author:
tbretz
Message:
Fixed some typos
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/scripts/Observation_class.js

    r15004 r15028  
    88function Observation(obj)
    99{
    10     if (typof(obj)!='object')
     10    if (typeof(obj)!='object')
    1111        throw new Error("Observation object can only be constructed using an object.");
    1212
     
    2121
    2222    this.start  = utc;
    23     this.task   = obj.task ? oArg.task.toUpperCase() : "DATA";
     23    this.task   = obj.task ? obj.task.toUpperCase() : "DATA";
    2424    this.source = obj.source;
    2525    this.ra     = obj.ra;
Note: See TracChangeset for help on using the changeset viewer.