Riyanto Jayadi
0f729e9a2e
Fixing (error.error === 603)
always results false
...
`if (error.error === 603) {...}` is always resulting false even error.error is "603" and the codes inside it is never executed.
It is because error.error is string "603".
It is need double quote to be `if (error.error === "603") {...}`
2015-10-14 15:48:54 +08:00
Sacha Greif
b192c2a74b
disable form inputs on post and comment submit
2015-09-23 11:36:19 +09:00
Sacha Greif
3fa328bbc4
small tweaks; update changelog
2015-09-22 11:41:12 +09:00
Sacha Greif
4894d5f4f2
sign-in/sign-up routes; clean up
2015-09-18 16:27:59 +09:00
Sacha Greif
50c48745a3
migrating to Flow Router (WIP)
2015-09-17 14:51:14 +09:00
Sacha Greif
44062735df
fix post submit subscribe/redirection delay
2015-09-08 11:54:14 +09:00
Sacha Greif
7e48d49366
working on post URL slugs
2015-06-18 13:04:38 +09:00
Sacha Greif
24e3a41d73
add comment submit keyboard shortcut, tweak comment styling
2015-05-14 11:21:44 +09:00
Sacha Greif
bd441a689d
fix pending posts; let users access their own pending posts
2015-05-09 13:26:31 +09:00
Sacha Greif
be35c98822
Add third "constant" parameter to callbacks; split callbacks.run into run and runAsync; split postEdit and commentEdit in two
2015-05-04 10:19:50 +09:00
Sacha Greif
1af39159e8
make posts list controller autorun depend on both router and template terms
2015-05-02 13:44:41 +09:00
Sacha Greif
fc8af1c9da
owner -> member; set allow/deny for posts, comments, users
2015-04-28 17:15:53 +09:00
Sacha Greif
10166402ef
use fields method to restrict fields after all
2015-04-28 11:32:53 +09:00
Sacha Greif
1231c2f53f
small fixes
2015-04-24 16:34:05 +09:00
Sacha Greif
36e2d063ce
nicer API namespacing
2015-04-24 09:48:36 +09:00
Sacha Greif
bd290058d7
completely refactoring callback hooks system
2015-04-23 15:42:05 +09:00
Sacha Greif
03f450e9d2
move posts and comments templates to their respective packages
2015-04-22 12:09:57 +09:00