From 1fcd5af536df5330b925c37e36bd8434d0fd55f1 Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Wed, 25 Aug 2021 00:01:56 -0700 Subject: [PATCH] Reverting, don't like the new docs. --- ignite-html-tabs.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ignite-html-tabs.js b/ignite-html-tabs.js index 91edd5d..f931d5f 100644 --- a/ignite-html-tabs.js +++ b/ignite-html-tabs.js @@ -9,7 +9,7 @@ import { IgniteTemplate, slot, div, html } from "../ignite-html/ignite-template. * @param {Boolean} active Whether or not this tab is active by default. * @returns {IgniteTemplate} This ignite template. */ -function tab(name, group = null, active = false) { + IgniteTemplate.prototype.tab = function(name, group = null, active = false) { //Set the starting class based on whether or not the tab is active. if (active) { this.class("tab-active"); @@ -49,8 +49,6 @@ function tab(name, group = null, active = false) { return this; } -IgniteTemplate.prototype.tab = tab; - class TabLink extends IgniteElement { constructor() { super();