easierbycode
6/18/2013 - 7:51 PM

gtranzcodesizzle.coffee

var GlobalTranz;

GlobalTranz = (function() {

  function GlobalTranz() {}

  GlobalTranz.prototype.headquarters = 'AZ';

  GlobalTranz.prototype.revenue = true;

  GlobalTranz.prototype.industryLeader = true;

  GlobalTranz.prototype.delivers = ['insight', 'passion', 'innovative products'];

  GlobalTranz.prototype.logistics = ['technologySolutions', 'service', 'efficiency'];

  GlobalTranz.prototype.culture = {
    workHard: true,
    recognizedSuccess: true,
    careerAdvancement: true
  };

  GlobalTranz.prototype.facts = {
    benefits: true,
    competitiveCompensation: true,
    referralBonusPto: true
  };

  if (interested) {
    GlobalTranz.applyNow();
  }

  GlobalTranz.prototype.applyNow = function() {
    var location;
    return location = 'http://globaltranz.com/careers';
  };

  return GlobalTranz;

})();
class GlobalTranz
  headquarters: 'AZ', revenue: true, industryLeader: true
  delivers: ['insight', 'passion', 'innovative products']
  logistics: ['technologySolutions', 'service', 'efficiency']
  culture:
    workHard:true
    recognizedSuccess:true
    careerAdvancement:true
  facts:
    benefits:true
    competitiveCompensation:true
    referralBonusPto:true

  @applyNow() if interested

  applyNow: ->
    location = 'http://globaltranz.com/careers'