monkey = require('baobab').monkey

module.exports = monkey({
  cursors:
    seal: ['sealBuilder']
  get: (state) ->
    #if any of the selects still have their
    #default state then not ready
    ready = true
    if state.seal.CTA == 'Select Your Call to Action'
      ready = false
    if state.seal.border.borderBasic == 'Select Border'
      ready = false
    if state.seal.icon == 'Select Icon'
      ready = false
    return ready
})
