Simple forum software for building great communities.
Go to file
Toby Zerner 82be1cea5d Fix post header items sometimes getting out of order. closes flarum/core#975
Interesting bug. Turns out that the JSX for the post header item list was producing m('ul', null, [children]), as you would expect. But Mithril 0.1.x interprets the null as another child rather than an attributes splat. This results in an empty text node being added to the DOM, which mucks up Mithril's diffing algorithm when it tries to add/move the items that we provide in the children array. The workaround is to not use JSX so we can get rid of that null/empty text node. This behaviour has been fixed in Mithril 1.0 so we will be able to remove the workaround.
2016-08-27 23:41:54 +09:30
error #719 Fixed PermissionDeniedException 2016-01-07 19:09:57 +01:00
js Fix post header items sometimes getting out of order. closes flarum/core#975 2016-08-27 23:41:54 +09:30
less reduce fontawesome relative path in less files. 2016-07-30 13:17:17 +08:00
migrations Applied fixes from StyleCI 2016-02-25 22:09:39 -05:00
scripts Clean up some old code 2015-10-22 12:25:22 +10:30
src Make StyleCI happy 2016-06-13 21:08:17 +09:00
stubs Refactor the web app bootstrapping code 2016-05-26 19:04:24 +09:30
tests Actually test IlluminateValidationExceptionHandler 2016-06-05 09:25:47 +09:30
views Display header HTML in layout rather than app wrapper 2016-06-05 09:53:08 +09:30
.editorconfig Clean up editorconfig, eslint, npm dependencies 2015-09-04 12:11:34 +09:30
.gitattributes Include the extension stub's .gitignore file 2015-08-29 18:29:33 +09:30
.gitignore Added some tests for the database setting repository 2015-09-28 15:34:32 +01:00
.styleci.yml Simplify StyleCI config 2016-02-26 13:47:17 +10:30
.travis.yml Move phpunit.xml into root to make PHPUnit easier to run 2016-06-05 09:16:29 +09:30
composer.json Updated s9e\TextFormatter to 0.6.1 2016-07-30 03:53:32 +02:00
CONTRIBUTING.md Update readme/contributing 2015-11-01 16:00:25 +10:30
LICENSE Update year range in LICENSE 2016-01-02 07:08:58 +01:00
phpunit.xml Move phpunit.xml into root to make PHPUnit easier to run 2016-06-05 09:16:29 +09:30
README.md Update readme/contributing 2015-11-01 16:00:25 +10:30

Flarum Core

This repository contains Flarum's core code. If you want to set up a forum, visit the main Flarum repository.

Contributing

Flarum is open-source and we would love your help building it! Please read the Contributing Guide to learn how you can help.