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