|
| 1 | +<div class="modal fade" id="modal_for_advanced_search" tabindex="-1" role="dialog" aria-labelledby="modal_for_advanced_search_LABEL" |
| 2 | + aria-hidden="true"> |
| 3 | + <div class="modal-dialog"> |
| 4 | + <div class="modal-content"> |
| 5 | + <div class="modal-header"> |
| 6 | + <button type="button" class="close" data-dismiss="modal" aria-hidden="true" aria-label="Close"> |
| 7 | + <span class="pficon pficon-close"></span> |
| 8 | + </button> |
| 9 | + <h4 class="modal-title" id="modal_for_advanced_search_LABEL">Advanced Options</h4> |
| 10 | + </div> |
| 11 | + <div class="modal-body"> |
| 12 | + <!-- FILTERS --> |
| 13 | + <h2 style="margin-top: 0;">Filters</h2> |
| 14 | + <p style="margin-bottom: 4rem;"> |
| 15 | + You can apply criteria such as limiting to papers published since some given year (default: 2013), or limiting to "reviews only" / "editorials only". |
| 16 | + </p> |
| 17 | + <form class="form-horizontal"> |
| 18 | + <div class="form-group"> |
| 19 | + <label for="reviews_only_switch" class="col-sm-3 control-label">Reviews only</label> |
| 20 | + <div class="col-sm-9"> |
| 21 | + <input class="bootstrap-switch" id="reviews_only_switch" type="checkbox" |
| 22 | + onchange="GLOBAL_FILTERS_CONTROLLER.user_did_change_type_filters('REVIEWS')" |
| 23 | + > |
| 24 | + </div> |
| 25 | + </div> |
| 26 | + <div class="form-group"> |
| 27 | + <label for="editorials_only_switch" class="col-sm-3 control-label">Editorials only</label> |
| 28 | + <div class="col-sm-9"> |
| 29 | + <input class="bootstrap-switch" id="editorials_only_switch" type="checkbox" |
| 30 | + onchange="GLOBAL_FILTERS_CONTROLLER.user_did_change_type_filters('EDITORIALS')" |
| 31 | + > |
| 32 | + <span class="help-block"> |
| 33 | + Selecting only editorials is a good filter for identifying special issues. |
| 34 | + </span> |
| 35 | + </div> |
| 36 | + </div> |
| 37 | + <div class="form-group"> |
| 38 | + <label for="minimum_year" class="col-sm-3 control-label">Limit by year</label> |
| 39 | + <div class="col-sm-9"> |
| 40 | + <input class="bootstrap-switch" id="limit_years_switch" type="checkbox" |
| 41 | + onchange="GLOBAL_FILTERS_CONTROLLER.check_limit_years_switch()" |
| 42 | + /> |
| 43 | + |
| 44 | + <span style="margin-left: 3rem; display: inline-block;"> |
| 45 | + published after |
| 46 | + </span> |
| 47 | + <span style="display: inline-block;"> |
| 48 | + <input class="form-control" id="limit_years_data" |
| 49 | + type="number" |
| 50 | + onchange="GLOBAL_FILTERS_CONTROLLER.check_limit_years_data()" |
| 51 | + onkeydown="GLOBAL_FILTERS_CONTROLLER.check_limit_years_data()" |
| 52 | + onkeyup="GLOBAL_FILTERS_CONTROLLER.check_limit_years_data()" |
| 53 | + style="max-width: 10rem; border-top: none; border-left: none; border-right: none; box-shadow: none;" |
| 54 | + /> |
| 55 | + </span> |
| 56 | + </div> |
| 57 | + </div> |
| 58 | + </form> |
| 59 | + |
| 60 | + <!-- LARGER LITBASKETS --> |
| 61 | + <h2 style="margin-top: 6rem;">Larger Litbaskets</h2> |
| 62 | + <p style="margin-bottom: 4rem;"> |
| 63 | + You can use larger litbaskets beyond the range [2XS .. M]. |
| 64 | + However, please be warned that for these larger Litbaskets, you will need to |
| 65 | + manually copy and paste a Scopus search string that will be generated for you. |
| 66 | + </p> |
| 67 | + <div> |
| 68 | + <table style="width: 100%;"> |
| 69 | + <tr> |
| 70 | + <td style="text-align: left; width: 50%;"> |
| 71 | + <em>Smallest Litbasket<br />Least journals</em> |
| 72 | + </td> |
| 73 | + <td style="text-align: right; width: 50%;"> |
| 74 | + <em>Largest Litbasket<br />Most journals</em> |
| 75 | + </td> |
| 76 | + </tr> |
| 77 | + </table> |
| 78 | + <input id="longslider" type="text" |
| 79 | + data-provide="slider" |
| 80 | + data-slider-ticks="[1, 2, 3, 4, 5, 6, 7, 8]" |
| 81 | + data-slider-ticks-labels='["2XS", "XS", " S", " M", " L", " XL", "2XL", "3XL"]' |
| 82 | + data-slider-min="1" |
| 83 | + data-slider-max="8" |
| 84 | + data-slider-step="1" |
| 85 | + data-slider-value="4" |
| 86 | + data-slider-tooltip="show" |
| 87 | + onchange="GLOBAL_SEARCH_CONTROLLER.user_did_change_longslider_value()" |
| 88 | + /> |
| 89 | + </div> |
| 90 | + |
| 91 | + <!-- PROXY --> |
| 92 | + <h2 style="margin-top: 6rem;">Proxy</h2> |
| 93 | + <p style="margin-bottom: 2rem;"> |
| 94 | + If you see your institution on the proxy selection, you can select their proxy server to ensure a smoother institutional login experience. |
| 95 | + </p> |
| 96 | + <select id="litbasketsproxy" style="width: 100%;" onchange="GLOBAL_SEARCH_CONTROLLER.user_did_change_litbasketsproxy_value()"> |
| 97 | + <option value="none">(None)</option> |
| 98 | + <option value="CBS">Copenhagen Business School</option> |
| 99 | + <option value="ETH_ZURICH">ETH Zurich</option> |
| 100 | + <option value="NUI_GALWAY">NUI Galway</option> |
| 101 | + <option value="UNI_CALGARY">University of Calgary</option> |
| 102 | + <option value="UNSW">University of New South Wales (UNSW Sydney)</option> |
| 103 | + <option value="USYD">University of Sydney (USYD)</option> |
| 104 | + <option value="UTS">University of Technology, Sydney (UTS)</option> |
| 105 | + </select> |
| 106 | + </div> |
| 107 | + <div class="modal-footer"> |
| 108 | + If you're done here — |
| 109 | + <button type="button" class="btn btn-success" data-dismiss="modal">SAVE & CLOSE</button> |
| 110 | + </div> |
| 111 | + </div> |
| 112 | + </div> |
| 113 | +</div> |
| 114 | + |
0 commit comments