diff --git a/index.html b/index.html index b5cc733..9d424d5 100644 --- a/index.html +++ b/index.html @@ -27,7 +27,8 @@
About Me / Skills / @@ -202,11 +203,10 @@
A realtime chat app in Vue
-A penny stock trading community needed a custom chat platform, so they hired my Desert Hacks '17 team. - Our implementation relies on Mongo, Redis, Node, and Express in the backend, Vue, Vue-router, and - Materialize on the front end, Socket.io handles real time communication between the two, and every - ounce of javascript we write is transpiled by Babel. I'm in charge of the front end and responsible - for the visual and architectural design of most of the SPA.
+Our back end relies on Mongo, Redis, Node, and Express; our front end uses Vue, Vue-router, and Materialize. + Socket.io handles real time communication between the two, and every ounce of javascript we write + is transpiled by Babel. I'm in charge of the front end and responsible for the visual and architectural + design of most of the SPA.
Unfortunately, this project is closed source, but it's not under NDA. I can't publish the code online, but I can show you if you ask.
@@ -253,7 +253,7 @@ document.addEventListener("scroll", function () { last_known_scroll = getScrollY(); if (!queueing) { - window.requestAnimationFrame(function () {//"queue up" animation + window.requestAnimationFrame(function () { //"queue up" animation queueing = false; sc(last_known_scroll); }); @@ -261,7 +261,7 @@ } }); - window.addEventListener("resize",function() { + window.addEventListener("resize", function () { last_known_scroll = getScrollY(); sc(last_known_scroll); });