Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: reagent-project/reagent
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: react-china/reagent
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: gh-pages
Choose a head ref

Commits on Jan 9, 2014

  1. Generate docs

    holmsand committed Jan 9, 2014
    Copy the full SHA
    44efeca View commit details
  2. Copy the full SHA
    7979bd7 View commit details
  3. Regenerated

    holmsand committed Jan 9, 2014
    Copy the full SHA
    b56c07d View commit details

Commits on Jan 10, 2014

  1. Unnecessary div

    holmsand committed Jan 10, 2014
    Copy the full SHA
    a492f97 View commit details
  2. Copy the full SHA
    90b5826 View commit details
  3. Update demo

    holmsand committed Jan 10, 2014
    Copy the full SHA
    3949149 View commit details
  4. Copy the full SHA
    043dd9d View commit details
  5. Build demo

    holmsand committed Jan 10, 2014
    Copy the full SHA
    0b74132 View commit details

Commits on Jan 11, 2014

  1. Copy the full SHA
    dca76aa View commit details
  2. Rebuilt

    holmsand committed Jan 11, 2014
    Copy the full SHA
    90b8f34 View commit details

Commits on Jan 24, 2014

  1. Merge branch 'master' into gh-pages

    Conflicts:
    	.gitignore
    	examples/todomvc/src/todomvc.cljs
    holmsand committed Jan 24, 2014
    Copy the full SHA
    d354ae6 View commit details
  2. Copy the full SHA
    a71c666 View commit details

Commits on Feb 3, 2014

  1. Merge branch 'master' into gh-pages

    Conflicts:
    	.gitignore
    	Makefile
    	demo/demo.cljs
    	demo/reagentdemo/page.cljs
    holmsand committed Feb 3, 2014
    Copy the full SHA
    84d854c View commit details
  2. Update site

    holmsand committed Feb 3, 2014
    Copy the full SHA
    40cd2a4 View commit details

Commits on Feb 21, 2014

  1. Copy the full SHA
    d0687f4 View commit details
  2. Reagent 0.4.0

    holmsand committed Feb 21, 2014
    Copy the full SHA
    5eca2e5 View commit details

Commits on Feb 22, 2014

  1. Copy the full SHA
    4d5ba8f View commit details
  2. Update site

    holmsand committed Feb 22, 2014
    Copy the full SHA
    00a9149 View commit details

Commits on Feb 26, 2014

  1. Copy the full SHA
    c471777 View commit details
  2. Push clock example

    holmsand committed Feb 26, 2014
    Copy the full SHA
    40a169a View commit details
  3. Copy the full SHA
    5b2e074 View commit details
  4. Rebuild

    holmsand committed Feb 26, 2014
    Copy the full SHA
    aae94dc View commit details

Commits on Mar 6, 2014

  1. Copy the full SHA
    d84b9cd View commit details
  2. Generate

    holmsand committed Mar 6, 2014
    Copy the full SHA
    c319ffa View commit details

Commits on Oct 28, 2014

  1. Copy the full SHA
    d738e42 View commit details
  2. Rebuild demo site

    holmsand committed Oct 28, 2014
    Copy the full SHA
    357a67e View commit details

Commits on Nov 26, 2015

  1. first version of translation

    tiye committed Nov 26, 2015
    Copy the full SHA
    827821d View commit details
  2. some typos

    tiye committed Nov 26, 2015
    Copy the full SHA
    2a13e9d View commit details
Showing with 37,218 additions and 141 deletions.
  1. +0 −3 .gitignore
  2. +22 −1 README.md
  3. +830 −0 assets/demo.css
  4. +34,699 −0 assets/demo.js
  5. +103 −135 demo/reagentdemo/intro.cljs
  6. +148 −0 index.html
  7. +66 −0 news/any-arguments.html
  8. +79 −0 news/binary-clock.html
  9. +52 −0 news/cloact-reagent-undo-demo.html
  10. +34 −0 news/index.html
  11. +138 −0 news/reagent-is-async.html
  12. +2 −2 site/demo.css
  13. +362 −0 site/demo.js
  14. +683 −0 site/democss.css
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
index.html
assets/
/news/
target
pom.xml
.lein-repl-history
23 changes: 22 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,25 @@

### Chinese translation of Reagent Intro

Live page: http://react-china.github.io/reagent

If you want to help, fork this project, update this file:

```bash
demo/reagentdemo/intro.cljs
```

run these commands to refresh `index.html`:

```bash
lein cljsbuild once
make gensite
```

and send PR at end.

----

# Reagent

A simple [ClojureScript](http://github.com/clojure/clojurescript) interface to
@@ -34,7 +55,7 @@ Reagent uses [Hiccup-like](https://github.com/weavejester/hiccup) markup instead
(defn some-component []
[:div
[:h3 "I am a component!"]
[:p.someclass
[:p.someclass
"I have " [:strong "bold"]
[:span {:style {:color "red"}} " and red"]
" text."]])
Loading