Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

29 righe
701 B

  1. /**
  2. * Created by Benny on 12.10.2014.
  3. */
  4. "use strict";
  5. var TB = TB || {};
  6. TB.Control = TB.Control || {};
  7. TB.Control.Stats = {
  8. index : function() {
  9. TB.GUI.showLoader();
  10. var page = new TB.Page( 'stats' );
  11. TB.Service.request( 'Stats', 'dashboard', {}, function( data ) {
  12. TB.GUI.hideLoader();
  13. data.profile = TB.Client.profile;
  14. TB.GUI.show(page, data);
  15. page.$container.find( '#btn-coach-help').click( function() {
  16. TB.GUI.showModal(
  17. "Statistik",
  18. TB.Config.Content.helpHtml.statistik
  19. );
  20. });
  21. });
  22. }
  23. };