Skip to content

Commit

Permalink
Fixed issue #13473: Serious issue: use of exclusive option hangs brow…
Browse files Browse the repository at this point in the history
…ser page
  • Loading branch information
lacrioque committed Mar 14, 2018
1 parent ed9da76 commit 044d56a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -40,6 +40,8 @@
!/upload/themes/question/readme.txt

# tmp directory : whole except the index.html for directory create
/tmp/*
!/tmp/*/
/tmp/assets/**/
/tmp/runtime/gii-1.1.18/*.*
/tmp/runtime/cache/*.bin
Expand Down
2 changes: 1 addition & 1 deletion assets/packages/limesurvey/survey.js
Expand Up @@ -77,7 +77,7 @@ function triggerEmRelevanceSubQuestion(){
updateLineClass($(this));
updateRepeatHeading($(this).closest(".ls-answers"));
}
$(this).find('input[disabled]').prop('checked', false).trigger('change');
$(this).find('input[disabled]').prop('checked', false);
console.ls.log($(this).find('input[disabled]'));
});
}
Expand Down

0 comments on commit 044d56a

Please sign in to comment.