This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
<style type="text/css"> | |
#fixednode { background-color: red; color: white; } | |
#item1 { background-color: blue; color: white; } | |
</style> | |
<style type="text/x-pbpl"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns processtest.core | |
(:require [cljs.core.async :as async | |
:refer [<! >! chan put! timeout]] | |
[om.core :as om :include-macros true] | |
[om.dom :as dom :include-macros true]) | |
(:require-macros [cljs.core.async.macros :refer [go]])) | |
(defn cell1 [data owner] | |
(reify | |
om/IInitState |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns processtest.core | |
(:require [cljs.core.async :as async | |
:refer [<! >! chan put! timeout]] | |
[om.core :as om :include-macros true] | |
[om.dom :as dom :include-macros true]) | |
(:require-macros [cljs.core.async.macros :refer [go]])) | |
(defn cell1 [data owner] | |
(reify | |
om/IInitState |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns processtest.core | |
(:require [cljs.core.async :refer [<! >! chan timeout]] | |
[om.core :as om :include-macros true] | |
[om.dom :as dom :include-macros true]) | |
(:require-macros [cljs.core.async.macros :refer [go]])) | |
(defn cell1 [data owner] | |
(reify | |
om/IInitState | |
(init-state [_] {:value 0 :class ""}) |
OlderNewer