PluginProbe
Copy Anything to Clipboard for WordPress – Copy Button, Copy Text & Copy Code / 3.8.2
Copy Anything to Clipboard for WordPress – Copy Button, Copy Text & Copy Code v3.8.2
5.5.3 3.1.0 3.2.0 3.2.1 3.3.0 3.4.0 3.4.1 3.4.2 3.4.3 3.5.0 3.5.1 3.5.2 3.6.0 3.7.0 3.8.0 3.8.1 3.8.2 3.8.3 4.0.0 4.0.2 4.0.3 4.0.4 4.0.5 4.1.0 4.1.1 All 78 releases
copy-the-code / classes / elementor / widgets / deal / script.js

script.js in Copy Anything to Clipboard for WordPress – Copy Button, Copy Text & Copy Code 3.8.2, at classes/elementor/widgets/deal/script.js

40 lines 776 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 (function ($) {
2 const CTCDeal = {
3
4 /**
5 * Init
6 */
7 init: function () {
8 this._bind();
9 },
10
11 /**
12 * Binds events
13 */
14 _bind: function () {
15 $( document ).on( 'click', '.ctc-deal-toggle-link', this.toggleDetails );
16 },
17
18 /**
19 * Toggle Details
20 */
21 toggleDetails: function (event) {
22 event.preventDefault();
23
24 const self = $( this )
25 const deal = self.parents( '.ctc-deal' )
26 const details = deal.find( '.ctc-toggle-details' )
27
28 details.slideToggle( 'fast' )
29
30 }
31 };
32
33 /**
34 * Initialization
35 */
36 $(function () {
37 CTCDeal.init();
38 });
39
40 })(jQuery);