Skip to content

Instantly share code, notes, and snippets.

View Jeet-Metapercept's full-sized avatar
🎯
Focusing

Jeet Jeet-Metapercept

🎯
Focusing
View GitHub Profile
@Jeet-Metapercept
Jeet-Metapercept / index.html
Created July 19, 2017 22:27
Steps-states Indicators
<body ng-app="app" ng-controller="main" ng-class="{'show-steps': showSteps}">
<main>
<button ng-class="{'dismiss': showSteps}" ng-click="showSteps = !showSteps"><i class="fa fa-2x fa-fw fa-{{(showSteps?'times':'life-ring')}}"></i></button>
</main>
<aside>
<header>
<ol data-title="Steps of Things" ng-class="{'started': active}">
<li ng-repeat="item in items" ng-click="click($index)" ng-class="{'seen': item.seen, 'done': item.done, 'active': item == active}"><span data-title="Step">{{item.step}}</span></li>
</ol>
@Jeet-Metapercept
Jeet-Metapercept / README.md
Created June 18, 2020 19:55 — forked from CodingDoug/README.md
Copying data from Firebase Realtime Database to a Google Sheet in real time via Cloud Functions