- (function ($) {
- var o = $('.responsive-tabs');
- if (o.length > 0) {
- include('/js/jquery.easy-responsive-tabs.js');
- $(document).ready(function () {
- o.each(function () {
- var $this = $(this);
- $this.easyResponsiveTabs({
- type: $this.attr("data-type") === "accordion" ? "accordion" : "default"
- });
- })
- });
- }
- })($);
Raw Paste