Skip to content

1.1.0 Release

Compare
Choose a tag to compare
@codecounselor codecounselor released this 02 Dec 17:13
· 86 commits to master since this release

Features

  • #132 - new observeReadyEvent available on the Job API
    • Sample Usage:
    job.observeReadyEvent( (detail) => {
        return new Promise( (resolve,reject) => {
          if( detail && detail.landscape ){
            job.changeArgValue('landscape', true)
          }
          resolve()
        })
    })