Version Description
Download this release
Release Info
Developer | poporon |
Plugin | Pz-LinkCard |
Version | 2.3.0 |
Comparing to | |
See all releases |
Code changes from version 2.2.9 to 2.3.0
- js/admin.js +9 -7
- pz-linkcard.php +2 -2
- readme.txt +4 -0
js/admin.js
CHANGED
@@ -1,9 +1,11 @@
|
|
1 |
-
|
2 |
-
$(
|
3 |
-
$('.pz-lkc-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
|
|
|
|
8 |
});
|
9 |
});
|
1 |
+
jQuery(function($){
|
2 |
+
$(function() {
|
3 |
+
$('.pz-lkc-tab').on('click', function() {
|
4 |
+
$('.pz-lkc-item').removeClass("pz-lkc-item-active");
|
5 |
+
$($(this).attr("href")).addClass("pz-lkc-item-active");
|
6 |
+
$('.pz-lkc-tab').removeClass('pz-lkc-tab-active');
|
7 |
+
$(this).addClass('pz-lkc-tab-active');
|
8 |
+
return false;
|
9 |
+
});
|
10 |
});
|
11 |
});
|
pz-linkcard.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Pz-LinkCard
|
4 |
Plugin URI: http://poporon.poponet.jp/pz-linkcard
|
5 |
Description: リンクをカード形式で表示します。
|
6 |
-
Version: 2.
|
7 |
Author: poporon
|
8 |
Author URI: http://poporon.poponet.jp
|
9 |
License: GPLv2 or later
|
@@ -177,7 +177,7 @@ class Pz_LinkCard {
|
|
177 |
'invalid-time' => null,
|
178 |
'plugin-link' => null,
|
179 |
'plugin-name' => 'Pz-LinkCard',
|
180 |
-
'plugin-version' => '2.
|
181 |
'plugin-url' => 'https://popozure.info/pz-linkcard',
|
182 |
'pz-hbc-options' => null,
|
183 |
'debug-time' => null
|
3 |
Plugin Name: Pz-LinkCard
|
4 |
Plugin URI: http://poporon.poponet.jp/pz-linkcard
|
5 |
Description: リンクをカード形式で表示します。
|
6 |
+
Version: 2.3.0
|
7 |
Author: poporon
|
8 |
Author URI: http://poporon.poponet.jp
|
9 |
License: GPLv2 or later
|
177 |
'invalid-time' => null,
|
178 |
'plugin-link' => null,
|
179 |
'plugin-name' => 'Pz-LinkCard',
|
180 |
+
'plugin-version' => '2.3.0',
|
181 |
'plugin-url' => 'https://popozure.info/pz-linkcard',
|
182 |
'pz-hbc-options' => null,
|
183 |
'debug-time' => null
|
readme.txt
CHANGED
@@ -163,6 +163,10 @@ A7.
|
|
163 |
5. "Write shortcode and url"
|
164 |
|
165 |
== Changelog ==
|
|
|
|
|
|
|
|
|
166 |
Ver2.2.9
|
167 |
* WordPress 5.2.3 での動作確認。
|
168 |
Compatible with WordPress 5.2.3.
|
163 |
5. "Write shortcode and url"
|
164 |
|
165 |
== Changelog ==
|
166 |
+
Ver2.3.0
|
167 |
+
* プラグインなどのインストール状況によって設定画面のタブが動作しない不具合の修正をしました。
|
168 |
+
Fixed: Fixed a bug that the tab of the setting screen does not respond.
|
169 |
+
|
170 |
Ver2.2.9
|
171 |
* WordPress 5.2.3 での動作確認。
|
172 |
Compatible with WordPress 5.2.3.
|