A very simple personal ticketing system (task management / todo-list system).
Some functionalities are not yet implemented. I made this in a hurry because I needed something for myself urgently while coping with unprecedented workload during the final months of a PhD 😅
If you want to use this, just clone this repo and open output/index.html
in your browser. That's it, no further installation necessary, this runs 100% in your browser and all data is managed by Window.localStorage.
Only if you're interested, because not everyone is.
- TypeScript ✨
- SCSS 🌈
- Generating a single page using
generate.sh
(is there even a name for this technique? idk, I do it a lot these days) - Bulma
- jQuery
Window.localStorage
— truly magical- Some icons by Yusuke Kamiyamane. Licensed under a Creative Commons Attribution 3.0 License.
Rename the current ticket:
DataHelper.globalCurrentSelectedItem.title = 'New title goes here please';
To make changes persistent, save changes to LocalStorage:
DataHelper.saveItemsToLocalStorage();