mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 18:21:39 +09:00
Connect everything as secure as possible.
1. 관리자 메뉴 도구의 레이아웃 설치 페이지에서 섬네일 이미지 주소 올바르게 표시 되도록 수정. 2. 페이지 곳곳에 표시된 주소 중 HTTPS 접속이 가능한 사이트의 주소를 업데이트. 3. 주소가 변경된 사이트들의 주소를 업데이트.
This commit is contained in:
parent
b3074d1c41
commit
3dc1b5d804
14 changed files with 39 additions and 39 deletions
|
|
@ -611,7 +611,7 @@
|
|||
<script id="tmpl_downloadableItem" type="text/x-jquery-tmpl">
|
||||
|
||||
<div class="item ${IsInstalled} ${IsUpToDate}">
|
||||
<img src="http://${ScreenShotURL}" alt="">
|
||||
<img src="https://${ScreenShotURL}" alt="">
|
||||
<h2><a target="_blank" href="${URL}">${MenuType}</a></h2>
|
||||
<p>${MenuTypeDesc}</p>
|
||||
<p><i class="starRating score${Score}"><i></i></i> <b class="x_badge">${Score}/${TotalVotes}</b> {$lang->package_update}: <time title="${LastUpdatedWithTime}">${LastUpdated}</time> <i>|</i> {$lang->package_downloaded_count}: ${TotalDownloads}</p>
|
||||
|
|
@ -1857,7 +1857,7 @@ jQuery(function($){
|
|||
if(this !== ev.target) return;
|
||||
|
||||
clearInputs($('#add_menu'));
|
||||
$('#add_menu .x_active ._linkUrl').val('http://');
|
||||
$('#add_menu .x_active ._linkUrl').val('http://');
|
||||
});
|
||||
$('#add_menu ._save').bind("click", function(){
|
||||
var sMenuName = $('#add_menu ._menuName').val();
|
||||
|
|
@ -1884,7 +1884,7 @@ jQuery(function($){
|
|||
|
||||
if(nSelectedTabIdx === 0){
|
||||
sUrl = $('#add_menu .x_active ._linkUrl').val();
|
||||
if(!sUrl || sUrl === "http://"){
|
||||
if(!sUrl || sUrl === "http://" || sUrl === "https://"){
|
||||
$.xeMsgBox.alert('URL is required');
|
||||
return;
|
||||
}
|
||||
|
|
@ -2525,7 +2525,7 @@ jQuery(function($){
|
|||
sIsInstalled = "";
|
||||
}
|
||||
|
||||
var sScreenshot = item.item_screenshot_url.replace(/^http:\/\//, "");
|
||||
var sScreenshot = item.item_screenshot_url.replace(/^https:\/\//, "");
|
||||
$node = $.tmpl( "downloadableItem", {
|
||||
MenuType: item.title,
|
||||
MenuTypeDesc: item.package_description,
|
||||
|
|
@ -3248,7 +3248,7 @@ jQuery(function($){
|
|||
<li class="${Selected}">
|
||||
<label><input type="radio" name="layout_item" title="${Title}"> ${Title}</label>
|
||||
<button type="button" class="item" title="클릭하면 레이아웃이 적용됩니다.">
|
||||
<img src="http://${ScreenShotURL}">
|
||||
<img src="https://${ScreenShotURL}">
|
||||
</button>
|
||||
<ul>
|
||||
<li><a href="#layoutSetup">설정 <i class="x_icon-circle-arrow-right"></i></a></li>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue