-
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #181
- Loading branch information
Showing
2 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Limitations | ||
|
||
Since the Portal UI is implemented in ClojureScript, it also adopts some of its | ||
platform limitations. | ||
|
||
## Dates | ||
|
||
Dates captured from your host platform are interpreted as `js/Date` in the | ||
Portal UI. Therefore, as documents by this [ClojureScript issue][date-issue], | ||
they are potentially interpreted against a different calendar. | ||
|
||
## Longs | ||
|
||
Since JavaScript doesn't support the full range of numbers provided by longs, | ||
integers outside of a certain range must be boxed and shipped as string to the | ||
UI. This precludes them from participating in viewers that expect `js/Number`. | ||
|
||
|
||
[date-issue]: https://github.com/clojure/clojurescript-site/issues/367 |