Skip to content

Instantly share code, notes, and snippets.

@loganlinn
loganlinn / history.cljs
Last active November 19, 2017 20:13
history.cljs
(ns history
"Light wrappers and utils for js/history")
(defn back! [] (.back js/history))
(defn forward! [] (.forward js/history))
(defn go! [idx] (.go js/history idx))
(defn replace-state!
@Scapal
Scapal / f7.js
Last active April 25, 2016 14:24
Modal Service for Framework 7 integration with Aurelia
import 'framework7';
// import 'framework7-3d-panels/dist/framework7.3dpanels';
export const F7 = new Framework7({
ios: true
});