JSFiddle - React, Tailwind, and code Playground

by alexbfree

JavaScript

eventualCohort = ->      
 $.ajax('http://experiments.zooniverse.org/experiment/SerengetiInterestingANimalExperiment1?userid=fred')
  .then (data) =>
    eventualCohort.resolve data.cohort
  .fail (error) =>
    console.log 'fail'
    eventualCohort.resolve null
.promise()






caller
getCohort
  .then (cohort) =>
    if cohort?
      @classification.metadata.cohort = cohort
  .always =>
    # Do the stuff in "setClassificationFinalPart"