Skip to content

Commit 1e0b599

Browse files
Merge pull request #10 from grails-samples/Increase_name_debounce
Increased debounce to 500ms on the project name field
2 parents 20a50b8 + 1e71f4e commit 1e0b599

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: groovy
22
jdk:
3-
- oraclejdk8
3+
- openjdk8
44
addons:
55
chrome: stable
66
firefox: latest

grails-app/assets/javascripts/applicationforge.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ function getCheckedBoxesValue(chkboxName) {
178178

179179
var nameInputListener = debounce(function() {
180180
onNameChange();
181-
}, 250);
181+
}, 500);
182182

183183
function onNameChanged() {
184184
nameInputListener();

0 commit comments

Comments
 (0)