Merge pull request #2372 from AndreasK79/winkey_url_fix
[Winkeyer] Fixed url when Cloudlog is in a subfolder
这个提交包含在:
当前提交
22fba830a4
共有 3 个文件被更改,包括 6 次插入 和 6 次删除
|
|
@ -1,6 +1,6 @@
|
|||
<div id="modal-backdrop" class="modal-backdrop fade show" style="display:block;"></div>
|
||||
<div id="modal" class="modal fade show" tabindex="-1" style="display:block;">
|
||||
<form hx-post="/index.php/qso/cwmacrosave" hx-target=".modal-body">
|
||||
<form hx-post="<?php echo base_url();?>index.php/qso/cwmacrosave" hx-target=".modal-body">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<div id="modal-backdrop" class="modal-backdrop fade show" style="display:block;"></div>
|
||||
<div id="modal" class="modal fade show" tabindex="-1" style="display:block;">
|
||||
<form hx-post="/index.php/qso/cwmacrosave" hx-target=".modal-body">
|
||||
<form hx-post="<?php echo base_url();?>index.php/qso/cwmacrosave" hx-target=".modal-body">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
|
|
|
|||
|
|
@ -526,13 +526,13 @@
|
|||
|
||||
<div id="winkey" class="card winkey-settings" style="margin-bottom: 10px;">
|
||||
<div class="card-header">
|
||||
<h4 style="font-size: 16px; font-weight: bold;" class="card-title">Winkey
|
||||
<h4 style="font-size: 16px; font-weight: bold;" class="card-title">Winkey
|
||||
|
||||
<button id="connectButton" class="btn btn-primary">Connect</button>
|
||||
|
||||
<button type="button" class="btn btn-light"
|
||||
hx-get="/index.php/qso/winkeysettings"
|
||||
hx-target="#modals-here"
|
||||
hx-get="<?php echo base_url(); ?>index.php/qso/winkeysettings"
|
||||
hx-target="#modals-here"
|
||||
hx-trigger="click"
|
||||
class="btn btn-primary"
|
||||
_="on htmx:afterOnLoad wait 10ms then add .show to #modal then add .show to #modal-backdrop"><i class="fas fa-cog"></i> Settings</button>
|
||||
|
|
@ -609,7 +609,7 @@
|
|||
}
|
||||
|
||||
$i = 0;
|
||||
if($query != false) {
|
||||
if($query != false) {
|
||||
foreach ($query->result() as $row) {
|
||||
echo '<tr class="tr'.($i & 1).'">';
|
||||
echo '<td>';
|
||||
|
|
|
|||
正在加载…
在新工单中引用