Skip to content
This repository has been archived by the owner on Apr 3, 2022. It is now read-only.

Latest commit

 

History

History
35 lines (29 loc) · 712 Bytes

README.md

File metadata and controls

35 lines (29 loc) · 712 Bytes

CytoscapeActionbar

Description

Actionbar for Cytoscape.js

Dependencies

  • Cytoscape.js >= 2.2
  • jQuery >= 1.4

Installation

Require package using bower:

bower install iisg/cytoscape-actionbar --save

Usage

  cy = cytoscape(
    container: ..
  )
  cy.actionbar(
    items: [
      {
        icon: 'fa fa-search-minus'      # class for actionbar button
        tooltip: 'Zoom out'             # button tooltip message
        action: (cy) ->                 # function to call
		condition: $compile("<span ng-show='isVisible'></span>")($scope) # optional compiled angular expression which wraps button
          ...
      },
      ..
    ]
  )