mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:30:57 +08:00
11 lines
331 B
JavaScript
11 lines
331 B
JavaScript
export default Ember.Component.extend({
|
|
router: function() {
|
|
return this.container.lookup('router:main');
|
|
}.property(),
|
|
|
|
active: function() {
|
|
const id = this.get('customization.id');
|
|
return this.get('router.url').indexOf(`/customize/css_html/${id}/css`) !== -1;
|
|
}.property('router.url', 'customization.id')
|
|
});
|