Hide tooltip after 3 secs
这个提交包含在:
父节点
7007fed87d
当前提交
99c68af2ca
共有 2 个文件被更改,包括 9 次插入 和 1 次删除
|
|
@ -255,6 +255,13 @@
|
|||
}
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
$(function () {
|
||||
$(document).on('shown.bs.tooltip', function (e) {
|
||||
setTimeout(function () {
|
||||
$(e.target).tooltip('hide');
|
||||
}, 3000);
|
||||
});
|
||||
});
|
||||
function validateForm() {
|
||||
let x = document.forms["searchForm"]["callsign"].value;
|
||||
if (x == "") {
|
||||
|
|
|
|||
|
|
@ -78,7 +78,8 @@
|
|||
$this->CI =& get_instance();
|
||||
if ($this->CI->public_search_enabled($slug) || $this->session->userdata('user_type') >= 2) { ?>
|
||||
<form method="post" name="searchForm" action="<?php echo site_url('visitor/search'); ?>" onsubmit="return validateForm()" class="form-inline">
|
||||
<input class="form-control mr-sm-2" id="searchcall" type="search" name="callsign" placeholder="<?php echo lang('menu_search_text'); ?>" <?php if (isset($callsign) && $callsign != '') { echo 'value="'.strtoupper($callsign).'"'; } ?> aria-label="Search" data-toogle="tooltip" data-placement="bottom" data-original-title="Please enter a callsign!">
|
||||
<input class="form-control mr-sm-2" id="searchcall" type="search" name="callsign" placeholder="<?php echo lang('menu_search_text'); ?>" <?php if (isset($callsign) && $callsign != '') { echo 'value="'.strtoupper($callsign).'"'; } ?> aria-label="Search" data-toogle="tooltip" data-placement="bottom" data-original-title="Please enter a callsign!" data-delay='{"show":"500", "hide":"100"}'
|
||||
>
|
||||
<input type="hidden" name="public_slug" value="<?php echo $slug; ?>">
|
||||
<button class="btn btn-outline-success my-2 my-sm-0" type="submit"><i class="fas fa-search"></i> <?php echo lang('menu_search_button'); ?></button>
|
||||
</form>
|
||||
|
|
|
|||
正在加载…
在新工单中引用