mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 19:30:45 +08:00
8 lines
163 B
JavaScript
8 lines
163 B
JavaScript
export default Ember.ArrayController.extend({
|
|
actions: {
|
|
goToGithub: function() {
|
|
window.open('https://github.com/discourse/discourse');
|
|
}
|
|
}
|
|
});
|