* Add change-popup-mode * Add feature to change popup trigger event * Remove example of change_popup_mode from index * Revert back to the original build files * Make changes asked in review * Remove default to click from bind event as default already set * code formatting
Install
npm install frappe-gantt
Usage
Include it in your html:
<script src="frappe-gantt.min.js"></script>
And start hacking:
var tasks = [
{
id: 'Task 1',
name: 'Redesign website',
start: '2016-12-28',
end: '2016-12-31',
progress: 20,
dependencies: 'Task 2, Task 3',
custom_class: 'bar-milestone' // optional
},
...
]
var gantt = new Gantt("#gantt", tasks);
If you want to contribute:
- Clone this repo.
cdinto project directoryyarnyarn run dev
License: MIT
Project maintained by frappe
Description
Languages
JavaScript
72.6%
HTML
20%
CSS
7.4%