Created
September 10, 2019 15:01
-
-
Save waracci/668f8ef1e378495669cdef35c2543aa3 to your computer and use it in GitHub Desktop.
log hours quick
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Amount in hours you need to log. Eg. "8:00" logs 8 hours for you | |
document.getElementById('time_input').value = '8:00'; | |
// Enter the product name you need to log hours for | |
document.getElementById('client_input').value = 'ProductName'; | |
// Enter a description to justify the hours. Comma separated hashtags withion a string are allowed too | |
document.getElementById('hashtags_description').value = '#product, #reason, I helped out a colleague'; | |
// Submits the form | |
document.getElementById('new_entry').submit() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment