Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anwesh43/processtrackerjs
An javascript library to create a Process Tracker in your site
https://github.com/anwesh43/processtrackerjs
Last synced: 4 days ago
JSON representation
An javascript library to create a Process Tracker in your site
- Host: GitHub
- URL: https://github.com/anwesh43/processtrackerjs
- Owner: Anwesh43
- Created: 2017-01-29T09:54:05.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-29T10:02:14.000Z (about 8 years ago)
- Last Synced: 2024-12-26T12:42:26.301Z (about 2 months ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.MD
Awesome Lists containing this project
README
#ProcessTrackerJS
##A javascript library to use a process tracker in your site. Imagine the situation where user needs to track some process in your site. For example an user made an order in your site and he want's to keep track his order status then we can use this Process Tracker so he/she can keep the track of the order visually.
##Usage
###Creating the process tracker and specify the color in constructor
```
var processTracker = new ProcessTracker(color)```
###Add process in the tracker
```
processTracker.addProcess('Delivered')
```
###create the ProcessTracker to show in your webpage
```
processTracker.create()
```
###In time update the process state during the transaction
```
processTracker.updateProcessState()
```