Fixed research page bug
* In some cases, it was impossible to implement a technology or set its research priority, due to the JS click handler exiting with a "false" return value.
This commit is contained in:
parent
6dcd59d7bc
commit
76a01cbf1c
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ $(function() {
|
|||
$('.tech-line').click(function() {
|
||||
var _id = $(this).attr('id').replace(/^tl-/, '');
|
||||
if (_id == _displayed) {
|
||||
return;
|
||||
return true;
|
||||
}
|
||||
_viewingArea.html($('#tdesc-' + _id).html());
|
||||
$('a', _viewingArea).click(function() {
|
||||
|
|
Reference in a new issue