2013-03-11 15:26:14 -04:00
|
|
|
/**
|
|
|
|
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');
|
|
|
|
}
|
2014-06-10 11:54:38 -04:00
|
|
|
});
|