@Arc It's great! Thank you very much for this, I included it in my forum immediately
FDX
Posts
-
NodeBB composer drag bar, simple CSS tweak -
Who is using NodeBB?At Onsen UI we just released today our new community forum using NodeBB: https://community.onsen.io
We are also using the blog-comments plugin for our blog with some modifications, although it's still a bit empty
We really like the NodeBB project!
-
[nodebb-plugin-blog-comments] Ghost: Unable to post error - without log@Giggiux Hey! If I don't remember wrong I got this error some time ago. The error message is not very descriptive so it could be related to something else, but I'd recommend you to check your tags. Perhaps your are using more tags than your configuration allows or one of them has too many characters. Look at
yourdomain.com/admin/settings/tags
to change those settings. -
Anybody using ES6 yet?I've been using ES6 for few months already in our project because we have an ES6 to ES5 transpiler (Babel). There is an unwritten rule now in the team to only use
let
andconst
. Thevar
thing never happenedAt the beginning I thought arrow functions were super ugly, but now that I got used to them is fine. You can even omit parenthesis, curly brackets and
return
keyword quite frequently. But I think the best part of arrow function is that it implicitly bindsthis
object so there is no need to specifyfunction() { }.bind(this)
anymore.Anyway, my favorite one is template strings. We make custom elements so we usually need a lot of strings with variables. This feature is super handy
If I'm not wrong async/await is actually for ES7, right?