From 72620b2a59e184594d707ce92ac7b04f5c7ff438 Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Tue, 24 Aug 2021 15:27:14 -0700 Subject: [PATCH] Changing docs to help VSCode detect extensions. --- ignite-html-tabs.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ignite-html-tabs.js b/ignite-html-tabs.js index 07a25a3..91edd5d 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. */ -IgniteTemplate.prototype.tab = function(name, group = null, active = false) { +function tab(name, group = null, active = false) { //Set the starting class based on whether or not the tab is active. if (active) { this.class("tab-active"); @@ -47,7 +47,9 @@ IgniteTemplate.prototype.tab = function(name, group = null, active = false) { this._callbacks.push(callback); return this; -}; +} + +IgniteTemplate.prototype.tab = tab; class TabLink extends IgniteElement { constructor() {