mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
13 lines
No EOL
370 B
JavaScript
13 lines
No EOL
370 B
JavaScript
/**
|
|
This controller is for the widget that shows the commits to the discourse repo.
|
|
|
|
@class AdminGithubCommitsController
|
|
@extends Ember.ArrayController
|
|
@namespace Discourse
|
|
@module Discourse
|
|
**/
|
|
Discourse.AdminGithubCommitsController = Ember.ArrayController.extend({
|
|
goToGithub: function() {
|
|
window.open('https://github.com/discourse/discourse');
|
|
}
|
|
}); |