{{! This file is part of Moodle - http://moodle.org/ Moodle is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Moodle is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Moodle. If not, see . }} {{! @template core/search_input_navbar Navbar search input template. Example context (json): { "action": "https://moodle.local/admin/search.php", "inputname": "search", "searchstring": "Search", "hiddenfields": [ { "name": "cmid", "value": "11" } ] } }}
{{#hiddenfields}} {{/hiddenfields}}
{{#pix}} e/cancel, core {{/pix}} {{#str}} closebuttontitle {{/str}}
{{#js}} require( [ 'jquery', ], function( $ ) { var uniqid = "{{uniqid}}"; var container = $('#searchinput-navbar-' + uniqid); var opensearch = container.find('[data-action="opensearch"]'); var input = container.find('[data-region="input"]'); var submit = container.find('[data-action="submit"]'); submit.on('click', function(e) { if (input.val() === '') { e.preventDefault(); } }); container.on('hidden.bs.collapse', function() { opensearch.removeClass('d-none'); input.val(''); }); container.on('show.bs.collapse', function() { opensearch.addClass('d-none'); }); container.on('shown.bs.collapse', function() { input.focus(); }); }); {{/js}}