Skip to content

Commit

Permalink
disable user-select; fix members page; publish 0.3.11 on npm
Browse files Browse the repository at this point in the history
  • Loading branch information
tiye committed Dec 2, 2017
1 parent a7a6dad commit b092063
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 15 deletions.
2 changes: 1 addition & 1 deletion app/coir.edn

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions app/entry/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
body {
margin: 0;
background-color: black;
user-select: none;
}

body * {
Expand Down
4 changes: 2 additions & 2 deletions app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"compile-ssr": "shadow-cljs compile ssr",
"html-dev": "env=dev node target/ssr.js && cp entry/manifest.json target/",
"html": "node target/ssr.js && cp entry/manifest.json dist/",
"dev": "yarn compile-ssr && yarn html-dev",
"index.html": "yarn compile-ssr && yarn html-dev",
"del": "rm -rf dist/*",
"serve": "http-server dist",
"build": "yarn del && yarn release && yarn compile-ssr && yarn html"
Expand All @@ -25,7 +25,7 @@
"license": "MIT",
"devDependencies": {
"http-server": "^0.10.0",
"shadow-cljs": "^2.0.95"
"shadow-cljs": "^2.0.114"
},
"dependencies": {}
}
2 changes: 1 addition & 1 deletion app/shadow-cljs.edn
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[respo/ui "0.2.0"]
[mvc-works/polyfill "0.1.1"]
[mvc-works/verbosely "0.1.1"]
[respo "0.7.1"]
[respo "0.8.0"]
[fipp "0.6.12"]
[respo/markdown "0.1.7"]]
:open-file-command ["subl" ["%s:%s:%s" :file :line :column]]
Expand Down
5 changes: 3 additions & 2 deletions app/src/app/comp/page_members.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[hsl.core :refer [hsl]]
[respo-ui.style :as ui]
[respo-ui.style.colors :as colors]
[respo.macros :refer [defcomp <> span div a]]
[respo.macros :refer [defcomp <> list-> span div a]]
[respo.comp.space :refer [=<]]))

(def style-bookmark
Expand All @@ -26,7 +26,8 @@
(router-data session-id)
(div
{:style (merge ui/flex style-members)}
(div
(list->
:div
{}
(->> router-data
(map
Expand Down
2 changes: 1 addition & 1 deletion app/src/app/main.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
(def mount-target (.querySelector js/document ".app"))

(defn render-app! [renderer]
(renderer mount-target (comp-container @*states @*store) dispatch!))
(renderer mount-target (comp-container @*states @*store) #(dispatch! %1 %2)))

(defn main! []
(if ssr? (render-app! realize-ssr!))
Expand Down
6 changes: 3 additions & 3 deletions app/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1186,9 +1186,9 @@ [email protected]:
version "1.1.0"
resolved "https://registry.yarnpkg.com/shadow-cljs-jar/-/shadow-cljs-jar-1.1.0.tgz#17fee311c5832b12eec65072b5d265f1c35ff67a"

shadow-cljs@^2.0.95:
version "2.0.95"
resolved "https://registry.yarnpkg.com/shadow-cljs/-/shadow-cljs-2.0.95.tgz#ae8c9b6fd19704cf530ee201551a9ca6e99c0d04"
shadow-cljs@^2.0.114:
version "2.0.114"
resolved "https://registry.yarnpkg.com/shadow-cljs/-/shadow-cljs-2.0.114.tgz#125e3dc386587902e14ce50347582278bd6fce97"
dependencies:
babel-core "^6.26.0"
babel-preset-env "^1.6.0"
Expand Down
4 changes: 2 additions & 2 deletions server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cumulo-editor",
"version": "0.3.10",
"version": "0.3.11",
"description": "Command line for Cumulo Editor",
"bin": {
"cumulo-editor": "dist/main.js",
Expand Down Expand Up @@ -31,7 +31,7 @@
"uws": "^9.14.0"
},
"devDependencies": {
"shadow-cljs": "^2.0.95",
"shadow-cljs": "^2.0.114",
"source-map-support": "^0.5.0",
"ws": "^3.3.2"
}
Expand Down
6 changes: 3 additions & 3 deletions server/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1387,9 +1387,9 @@ [email protected]:
version "1.1.0"
resolved "https://registry.yarnpkg.com/shadow-cljs-jar/-/shadow-cljs-jar-1.1.0.tgz#17fee311c5832b12eec65072b5d265f1c35ff67a"

shadow-cljs@^2.0.95:
version "2.0.95"
resolved "https://registry.yarnpkg.com/shadow-cljs/-/shadow-cljs-2.0.95.tgz#ae8c9b6fd19704cf530ee201551a9ca6e99c0d04"
shadow-cljs@^2.0.114:
version "2.0.114"
resolved "https://registry.yarnpkg.com/shadow-cljs/-/shadow-cljs-2.0.114.tgz#125e3dc386587902e14ce50347582278bd6fce97"
dependencies:
babel-core "^6.26.0"
babel-preset-env "^1.6.0"
Expand Down

0 comments on commit b092063

Please sign in to comment.