Robin Ward
|
48314d04f7
|
FIX: Groups were not being displayed in the map of private messages
|
2017-10-23 13:14:16 -04:00 |
|
Guo Xiang Tan
|
25c25ae423
|
FEATURE: Allow user to leave a PM.
|
2017-10-19 12:32:55 +08:00 |
|
Robin Ward
|
8c2d6118ff
|
Remove some of the last few fa-icon helpers
|
2017-09-14 11:20:36 -04:00 |
|
Robin Ward
|
dffb1fc4ee
|
FEATURE: Use Glimmer compiler for widget templates
Widgets can now specify a template which is precompiled using Glimmer's
AST and then converted into our virtual dom code.
Example:
```javascript
createWidget('post-link-arrow', {
template: hbs`
{{#if attrs.above}}
<a class="post-info arrow" title={{i18n "topic.jump_reply_up"}}>
{{fa-icon "arrow-up"}}
</a>
{{else}}
<a class="post-info arrow" title={{i18n "topic.jump_reply_down"}}>
{{fa-icon "arrow-down"}}
</a>
{{/if}}
`,
click() {
DiscourseURL.routeTo(this.attrs.shareUrl);
}
});
```
|
2017-09-01 09:28:16 -04:00 |
|
Robin Ward
|
e87125b63c
|
FEATURE: Plugins can overwrite and add support for new icons
|
2017-07-26 13:21:17 -04:00 |
|
Robin Ward
|
be1d74d207
|
Split out common functions into discourse-common module
|
2016-09-22 09:52:19 -04:00 |
|
Sam
|
8866169879
|
FEATURE: can invite/revoke groups on private messages
|
2016-06-20 16:29:27 +10:00 |
|
Arpit Jalan
|
0e02d24428
|
FIX: check for confirm value before removing user from PM
|
2016-04-04 11:56:07 +05:30 |
|
Robin Ward
|
d1e85bdd8b
|
FEATURE: Use virtual dom framework for faster post rendering
|
2016-02-11 11:00:40 -05:00 |
|