Robin Ward
|
dceb72bc69
|
FIX: Move makeArray to discourse-common
|
2019-11-01 13:50:15 -04:00 |
|
Robin Ward
|
89f602f66b
|
REFACTOR: Ember.makeArray was removed from the public API
|
2019-11-01 13:50:15 -04:00 |
|
Robin Ward
|
3cb0d27d38
|
DEV: Upgrade our widget handlebars compiler
Now supports subexpressions such as i18n and concat, plus automatic
attaching of widgets similar to ember.
|
2019-05-02 15:47:57 -04:00 |
|
Joffrey JAFFEUX
|
e76b598e0f
|
FIX: ensures add/remove btn is shown if you can only invite (#7185)
|
2019-03-15 20:20:42 +01:00 |
|
Joffrey JAFFEUX
|
c90267db52
|
FIX: do not display add/remove participants if you can’t actually do it (#7125)
|
2019-03-08 09:23:26 +01:00 |
|
Guo Xiang Tan
|
46e62c0d22
|
UX: Default user facing routes to /g instead of /groups. (#7042)
|
2019-02-21 13:44:25 +08:00 |
|
Kris
|
c219a5fb1e
|
Add btn-default class to all default buttons (#6521)
|
2018-10-24 16:09:36 -04:00 |
|
Jeff Atwood
|
22110d3106
|
minor copyedit on pm a/r button
|
2018-08-29 16:51:38 -07:00 |
|
Joffrey JAFFEUX
|
ad34bdca09
|
UI: minor tweaks to new message participants list (#6328)
* Icon for button
* Display name when editing on mobile
* Always display name on mobile when less/or 4 participants involved
|
2018-08-29 10:07:49 +02:00 |
|
Joffrey JAFFEUX
|
4fdc27bab5
|
UI: improves participants list in messages (#6320)
|
2018-08-27 15:41:34 +02:00 |
|
Kris
|
f0bea4ae55
|
Improve PM participant list
|
2018-08-01 16:20:14 -04:00 |
|
Joffrey JAFFEUX
|
03a7d532cf
|
DEV: introduces prettier for es6 files
|
2018-06-15 17:03:24 +02:00 |
|
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 |
|