mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-25 08:39:38 -05:00
8 lines
163 B
Text
8 lines
163 B
Text
|
export default Ember.ArrayController.extend({
|
||
|
actions: {
|
||
|
goToGithub: function() {
|
||
|
window.open('https://github.com/discourse/discourse');
|
||
|
}
|
||
|
}
|
||
|
});
|