PluginProbe
Smart Grid-Layout Design for Contact Form 7 / 3.3.2
Smart Grid-Layout Design for Contact Form 7 v3.3.2
4.18.0 4.17.0 3.2.0 3.2.1 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 4.0.0 4.0.1 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.10 4.11 4.12 4.13 4.14 All 119 releases
cf7-grid-layout / assets / jquery-toggles / js / wrap.js

wrap.js in Smart Grid-Layout Design for Contact Form 7 3.3.2, at assets/jquery-toggles/js/wrap.js

26 lines 564 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 @license jQuery Toggles v4.0.0
3 Copyright 2012 - 2015 Simon Tabor - MIT License
4 https://github.com/simontabor/jquery-toggles / http://simontabor.com/labs/toggles
5 */
6 (function(root) {
7
8 var factory = function($) {
9
10 <<Toggles>>
11
12 $.fn['toggles'] = function(opts) {
13 return this.each(function() {
14 new Toggles($(this), opts);
15 });
16 };
17 };
18
19 if (typeof define === 'function' && define['amd']) {
20 define(['jquery'], factory);
21 } else {
22 factory(root['jQuery'] || root['Zepto'] || root['ender'] || root['$'] || $);
23 }
24
25 })(this);
26