From b896880f0a1d08f1e46f69676bab95af6ec44b50 Mon Sep 17 00:00:00 2001 From: Maks Jopek Date: Mon, 24 May 2021 01:00:37 +0200 Subject: Initial commit --- src/index.html | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++ src/index.ts | 12 +++++++++++ src/modules/dummy.ts | 4 ++++ 3 files changed, 72 insertions(+) create mode 100644 src/index.html create mode 100644 src/index.ts create mode 100644 src/modules/dummy.ts (limited to 'src') diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..9637b67 --- /dev/null +++ b/src/index.html @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + sIRC + + + +
+
+
+
+
+
+
+
+
+
+
    +
  • :) :D :P ;)
  • +
  • item
  • +
  • item
  • +
  • item
  • +
  • item
  • +
  • item
  • +
  • item
  • +
  • item
  • +
  • item
  • +
  • item
  • +
  • item
  • +
+
+
+
+ + + \ No newline at end of file diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..61abe7d --- /dev/null +++ b/src/index.ts @@ -0,0 +1,12 @@ +// import moduleFunction from "Modules/dummy"; + +// const userName = prompt("Gimme your name:"); +// if (userName === null) { +// document.body.innerHTML = 'You should give me your name'; +// } else { +// document.body.innerHTML = userName; +// } +//@ts-ignore +$("#chatlist").tinyscrollbar(); +//@ts-ignore +$("#emot").emoticonize(); diff --git a/src/modules/dummy.ts b/src/modules/dummy.ts new file mode 100644 index 0000000..103f8b7 --- /dev/null +++ b/src/modules/dummy.ts @@ -0,0 +1,4 @@ +export default function moduleFunction(arg: string) { + console.log("From dummy component"); + return arg + " Module"; +} \ No newline at end of file -- cgit v1.3.1