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 ui.app | |
| (:refer-hoplon :exclude [main body]) | |
| (:refer-clojure :exclude [meta]) | |
| (:require-macros [ui.app :as app]) | |
| (:require [app.routes :as routes] | |
| [app.integrations :as int] | |
| [ui.global-state :as global])) | |
| (def meta html-meta) |
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 workflow.form | |
| (:require | |
| [castra.core :as castra] | |
| [clojure.walk :as walk] | |
| [clojure.data :as data])) | |
| ;; Form data manager ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| (defn- reset-vals! | |
| [map-of-cells default] |
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 app.ui.login | |
| (:require [goog.net.cookies :as cks] | |
| [app.rpc :as rpc] | |
| [ui.form :as form] | |
| [ui.button :as button] | |
| [workflow.form :as workflow] | |
| [ui.modal :as modal] | |
| [ui.app :as app] | |
| [cemerick.url :refer [url]])) |
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
| <link rel="import" href="../components/polymer/polymer.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; |
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
| could not find implicit value for parameter marshaller: spray.httpx.marshalling.ToResponseMarshaller[scala.concurrent.Future[Animal]] | |
| (zoo ? GetRandomAnimal).mapTo[Animal] | |
| ^ |
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
| Set<Customer> customers = ...; | |
| display(new ParallelSet<Customer>(customers).filter(...).map(...).sort(...)); |
NewerOlder