aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2017-04-05 20:28:31 +0200
committerTeddy Wing2017-04-05 20:28:31 +0200
commitccd1878633f8d9ae971428aba533f39445213875 (patch)
treee264c436c06efafec32ebe353d818a1830ec6e8e
parent122eb638e982b93d77798bca4c44d4f67e51a0dc (diff)
parentf8c558d06fbd0d7d562a779e640e0735ec3014fb (diff)
downloadchrome-timetasker-master.tar.bz2
Merge branch 'increase-timeouts'HEADv0.0.3master
-rw-r--r--CHANGELOG3
-rw-r--r--manifest.json2
-rw-r--r--timetasker.js8
3 files changed, 8 insertions, 5 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 3fc8ce6..813dd60 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,9 @@
CHANGELOG
=========
+v0.0.3 (2017.04.05):
+ * Increase timeouts of asynchronous select box auto-populators
+
v0.0.2 (2017.03.19):
* Code cleanup
* Fix bug populating the billable checkbox
diff --git a/manifest.json b/manifest.json
index 04e133e..141d79c 100644
--- a/manifest.json
+++ b/manifest.json
@@ -3,7 +3,7 @@
"name": "Timetasker",
"description": "Automatic weekly Time Task form filler",
- "version": "0.0.2",
+ "version": "0.0.3",
"content_scripts": [
{
diff --git a/timetasker.js b/timetasker.js
index fb653f3..71267d9 100644
--- a/timetasker.js
+++ b/timetasker.js
@@ -28,21 +28,21 @@ function timetasker (fields) {
window.setTimeout(function() {
populate_select(module_0, fields.module);
- }, 500);
+ }, 1000);
window.setTimeout(function() {
populate_select(task_0, fields.task);
- }, 500);
+ }, 1000);
window.setTimeout(function() {
populate_select(work_type_0, fields.work_type);
- }, 500);
+ }, 1000);
time_0.value = fields.time;
window.setTimeout(function() {
billable_0.checked = fields.billable;
- }, 500);
+ }, 800);
window.setTimeout(function() {