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