Feature #1151 ยป 1151-patch-open-in-a-new-window.diff
| public/javascripts/application.js (working copy) | ||
|---|---|---|
| 627 | 627 |
toggleDisabledInit(); |
| 628 | 628 |
}); |
| 629 | 629 | |
| 630 |
function addTargetBlank() {
|
|
| 631 |
$('a.external').attr('target', '_blank');
|
|
| 632 |
$('a.help').attr('target', '_blank');
|
|
| 633 |
} |
|
| 634 | ||
| 630 | 635 |
$(document).ready(setupAjaxIndicator); |
| 631 | 636 |
$(document).ready(hideOnLoad); |
| 632 | 637 |
$(document).ready(addFormObserversForDoubleSubmit); |
| 633 | 638 |
$(document).ready(defaultFocus); |
| 634 | ||
| 639 |
$(document).ready(addTargetBlank); |
|