David Greenspan
5dcb59b890
remove extra spaces in HTML
2013-12-11 15:05:48 -08:00
David Greenspan
45bd7f9e73
SVG clock demo
2013-12-11 14:59:55 -08:00
David Glasser
a933225026
Merge branch 'devel' into shark
2013-12-02 17:29:35 -08:00
Nick Martin
db59ab13c1
wait for server to be running instead of naive sleep.
2013-11-26 15:05:18 -08:00
David Greenspan
84b123ef44
don't use triple stache for HTML attrs in examples
...
This syntax has a bug where it relies on having html5-tokenizer on the client, code which was written for the server (and uses Function.bind, defineGetter, etc.).
The plan is to deprecate/remove this syntax anyway, i.e. not allow
you to say `<x {{{attrs}}}>` and then have `attrs` evaluate to a string like
'key1="value1" key2="value2"' at runtime. Constructing these strings is error-prone and likely to be insecure.
Instead, you'll have your choice of double-stache in an attribute value, with or without quotes (`<a b={{c}}>`, or `<a b="{{c}} {{d}}"`, or even `<a b={{c}}-{{d}}>`), or double-stache at the top level of a tag, as in `<a {{b}}>`, in which case `b` must be either a dictionary of attribute names and values or a string containing at most a single attribute name (e.g. "selected" or "").
2013-11-12 19:15:47 -08:00
David Greenspan
c9a79c1593
Merge branch 'devel' into shark
...
Conflicts:
examples/leaderboard/.meteor/release
examples/parties/.meteor/release
examples/todos/.meteor/release
examples/wordplay/.meteor/release
2013-11-11 20:50:33 -08:00
Nick Martin
c1d2c31b90
Update readme and scenarios for new benchmark.
2013-11-05 23:13:01 -08:00
Nick Martin
a4df4a792c
Add indexes to help mongo CPU.
2013-11-05 23:12:50 -08:00
Nick Martin
fd7ffb4420
Use method for remove.
2013-11-05 18:24:29 -08:00
Nick Martin
f688a54456
remove silly print.
2013-11-05 18:23:03 -08:00
Nick Martin
8bf8162c7a
Comment fixups.
2013-11-05 18:23:03 -08:00
Nick Martin
6a78254ddc
don't count the whole table.
2013-11-05 15:48:56 -08:00
Nick Martin
7c6073a9f5
no, don't remove
2013-11-05 15:47:10 -08:00
Nick Martin
80c7749c34
wip
2013-11-05 15:47:10 -08:00
Nick Martin
4500a1aa6d
update params files and readme for new benchmark.
2013-11-05 15:41:24 -08:00
David Glasser
28aa83d774
Add facts to chat-benchmark.
2013-11-05 15:41:23 -08:00
Nick Martin
971d93ae24
Chat benchmark
2013-11-05 15:41:23 -08:00
Nick Martin
9a47e73392
copy off old benchmark.
2013-11-05 15:41:23 -08:00
rzymek
2946346c38
Minor leaderboard example simplification. Replaced {{#unless}} with {{else}}.
2013-11-04 21:11:20 -08:00
Nick Martin
11a10421f7
bump version number on example and docs
2013-10-21 16:48:38 -07:00
Nick Martin
958a547513
update examples to 0.6.6.1
2013-10-11 18:43:13 -07:00
Avital Oliver
a0f76c8c74
Use the 'rendering-preview-0' release
2013-10-11 14:55:30 -07:00
Avital Oliver
c11a085863
Use the 'rendering-preview-0' release
2013-10-11 14:49:56 -07:00
Avital Oliver
5741186ee4
Merge branch 'devel' into shark
2013-10-10 16:37:56 -07:00
Avital Oliver
cdd07f9acc
Remove #constant from parties
2013-10-10 15:20:10 -07:00
Nick Martin
06b9beab3a
upgrade docs and examples to 0.6.6
...
this is premature, as it isn't out yet, but it will be by the time this hits devel
2013-10-10 12:45:40 -07:00
Nick Martin
1214eec099
test and bump version numbers for examples and docs.
2013-10-08 23:34:43 -07:00
David Greenspan
2378cbfbdc
Merge branch 'devel' into shark
2013-10-07 10:25:20 -07:00
Avital Oliver
67844275b3
accounts-ui-viewer partially running
...
* introduced `withData` on components to allow
passing data without being exposed to the OO
model
2013-10-04 22:40:34 -07:00
Avital Oliver
2c727f0dbc
{{loginButtons}} -> {{> loginButtons}}
2013-10-04 22:20:53 -07:00
Geoff Schmidt
77d50e4f3d
parties example: force selection to an actually-existing party.
...
This handles the case where the selected party is
deleted by another user, and also the case where
the server rejects the party creation request.
2013-10-04 18:21:18 -07:00
Geoff Schmidt
c2b2deb0d6
parties example: force selection to an actually-existing party.
...
This handles the case where the selected party is
deleted by another user, and also the case where
the server rejects the party creation request.
2013-10-04 18:19:57 -07:00
David Greenspan
2445a2c2cb
Merge branch 'devel' into shark
2013-10-02 15:01:19 -07:00
Geoff Schmidt
b28c817241
Use Random.id rather than the deprecated Meteor.uuid.
2013-09-30 15:41:53 -07:00
Geoff Schmidt
f0e273eaf0
#1063 In parties example, latency compensate object insertion from method.
2013-09-30 15:32:34 -07:00
David Glasser
79d900cf65
Remove random from leaderboard and wordplay .meteor/packages.
...
It's part of standard-app-packages (though it wasn't added to it
until relatively late in the linker project).
2013-09-25 22:35:41 -07:00
Matt DeBergalis
5889adea90
Various wordplay fixes:
...
* Don't add blank lines to the dictionary.
* Fix broken word length check in `score_word`.
* Prevent event handler from submitting blank words.
2013-09-25 12:14:58 -07:00
Matt DeBergalis
a3d539ed0b
Disallow words added after game clock expires.
...
Fixes #541 .
2013-09-25 11:39:24 -07:00
Avital Oliver
13ee1dd825
revert leaderboard back to its version on devel and make it work
2013-09-18 16:09:58 -07:00
David Greenspan
e60da7acc1
allow string in <div {{{attrs}}}>
2013-09-18 15:49:03 -07:00
David Greenspan
665cfb269d
next step in porting template-demo
2013-09-18 10:34:17 -07:00
David Greenspan
d5da9341c1
Merge branch 'observe-sequence' into shark-domrange
2013-09-13 12:06:43 -07:00
David Greenspan
83c0ae7873
Merge branch 'shark-tests' into shark-domrange
...
Conflicts:
packages/jquery/jquery.js
packages/ui/package.js
2013-09-09 18:45:13 -07:00
Nick Martin
16b8f0b0b6
update examples for 0.6.5.1
2013-08-28 14:13:09 -07:00
David Greenspan
a842d575ce
domrange-grid speed demo; IE 8 testing
2013-08-27 17:18:20 -07:00
David Greenspan
2ff37d14f3
shark example seems to work (with many XXX)
2013-08-26 13:59:00 -07:00
David Greenspan
afc2759e01
glitchless add/remove/move
...
handles quick add-remove, double-move, and add-move
even seems to work with Sortable!
2013-08-16 15:50:21 -07:00
David Greenspan
5b801b027a
fix quick add/remove
...
todo:
- make "move" use the same state object for smooth
moves of fading-in elements
- fix double-move of same element
2013-08-15 19:01:08 -07:00
Avital Oliver
b43024358e
Resolve a bunch of xcxc's
2013-08-14 20:53:33 -07:00
Nick Martin
21df324a1d
bump version numbers.
2013-08-14 13:30:46 -07:00