Sha256: fb5fbc29dfff5bffaa36ad41ad790547eeea5b634646fb4fb66309bc801a3da9

Contents?: true

Size: 885 Bytes

Versions: 4

Compression:

Stored size: 885 Bytes

Contents

application = Tools.register      "Tools.Application"
application.extends               "Luca.Application" 

application.configuration
  el: '#viewport'
  bodyClassName: "viewport-body"

  bindMethods:[
    "toggleLayout"
  ]

  topToolbar:
    buttons:[
      label: "Toggle Layout"
      eventId: "toggle:layout"
    ]

  bottomToolbar:
    buttons:[]

  fluid: false
  applyWrapper: false
  autoBoot: false
  useController: false
  name: 'ToolsApp'
  router:             "Tools.Router"
  collectionManager:  "ToolsCollectionManager"

application.contains
  type: "component_inspector"
  role: "component_inspector"
  className: "work-area row-fluid"

application.publicMethods
  currentApplication: ()->
    "tools"
    
  toggleLayout: ()->
    Tools().getComponentInspector().cycleLayout()

application.privateMethods
  boundaries: ()->
    [0,60,400,460]

application.register()

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
luca-0.9.91 spec/support/fixtures/application.coffee
luca-0.9.9 spec/support/fixtures/application.coffee
luca-0.9.899 spec/support/fixtures/application.coffee
luca-0.9.89 spec/support/fixtures/application.coffee