UNPKG

stylie.tabs

Version:

100% width tabbed content with some example media queries for smaller screens.

19 lines (14 loc) 398 B
'use strict'; var StylieTabs = require('../../index'), stylieTab1; var tabEvents = function () { stylieTab1.on('tabsShowIndex', function (index) { console.log('tab show index', index); }); }; window.addEventListener('load', function () { var tabelement = document.getElementById('tabs'); stylieTab1 = new StylieTabs(tabelement); tabEvents(); window.stylieTab1 = stylieTab1; }, false);