phcthemes_web_theme_pack 2.0.6 → 2.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1b5836319ed07d8da2051250d6bb5df3fe9a990db1b5f35459498c9336d9f797
|
|
4
|
+
data.tar.gz: 4787dc3fc0f4173e4cef67ff45bab96e7dad66376d787df75751b75b123c6c40
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f206e9086802b18597f4b9148dcfe1c3a198f4d82faa809d1c26787ac294a551186b36ddac80ac4bcb0b008fd33f7b5dd78ca67013b289da7d39d3bed4e4041f
|
|
7
|
+
data.tar.gz: a073905a4831ad04a40a504b90b4e6324d2cb1a5e0f99cfcd848e8610bd325be494e98ba92a1fb66f3300b0c3217332dd3d501f780d4426ebaac7dffb1740c66
|
|
@@ -11,8 +11,6 @@
|
|
|
11
11
|
//= require themes/hostinza/theme/hostslide.js
|
|
12
12
|
//= require themes/hostinza/theme/vps-slider-month-products.js
|
|
13
13
|
//= require themes/hostinza/theme/vps-slider-month-settings.js
|
|
14
|
-
//= require themes/hostinza/theme/vps-slider-year-products.js
|
|
15
|
-
//= require themes/hostinza/theme/vps-slider-year-settings.js
|
|
16
14
|
//= require common/rev-slider/jquery.themepunch.tools.min.js
|
|
17
15
|
//= require common/rev-slider/jquery.themepunch.revolution.js
|
|
18
16
|
//= require common/rev-slider/extensions/revolution.extension.actions.js
|
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
"use strict";
|
|
5
5
|
$(document).ready(function() {
|
|
6
6
|
|
|
7
|
-
if ($(".vps-slider
|
|
7
|
+
if ($(".vps-slider").length > 0) {
|
|
8
8
|
|
|
9
|
-
let $this = $(".vps-slider
|
|
9
|
+
let $this = $(".vps-slider");
|
|
10
10
|
let sliderplans = [];
|
|
11
11
|
|
|
12
12
|
// Title
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
// ip two
|
|
40
40
|
sliderplans[11] = [monthproducts[0].ssl, monthproducts[1].ssl, monthproducts[2].ssl, monthproducts[3].ssl, monthproducts[4].ssl];
|
|
41
41
|
|
|
42
|
-
let
|
|
42
|
+
let uriclass = [monthproducts[0].urlclass, monthproducts[1].urlclass, monthproducts[2].urlclass, monthproducts[3].urlclass, monthproducts[4].urlclass];
|
|
43
43
|
let currentplan = 1;
|
|
44
44
|
|
|
45
45
|
$this.xsslide('single', sliderplans, currentplan, 'xs', 'horizontal');
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
$('.vps-pricing-list .ssl').html(sliderplans[11][ui.value-1]);
|
|
78
78
|
|
|
79
79
|
// Buttons
|
|
80
|
-
$('.slider-btns').attr('href',
|
|
80
|
+
$('.slider-btns').attr('href', uriclass[ui.value-1]);
|
|
81
81
|
|
|
82
82
|
},
|
|
83
83
|
change: function( event, ui ) {
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
$('.vps-pricing-list .ssl').html(sliderplans[11][ui.value-1]);
|
|
112
112
|
|
|
113
113
|
// Buttons
|
|
114
|
-
$('.slider-btns').attr('href',
|
|
114
|
+
$('.slider-btns').attr('href', uriclass[ui.value-1]);
|
|
115
115
|
|
|
116
116
|
}
|
|
117
117
|
});
|