Bedienoberfläche für Webradio
ulrich
2018-01-02 f927ec07c0f7db7310e0563f047ef8e92592d53f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
var TPL_HOME = 'home';
var TPL_PREFS = 'prefs';
var templateCache = {}; // mustache templates 'home', 'prefs'
var prefsRendered = false;
 
function app_init() {
  $('.ost').hide();
  app_menu_init("menu/", "hauptmenue.json", "../jslib/app-menu/app-menu.tpl", ".west");
  //app_get_template('tpl/home.tpl', 'home');
  //app_get_template('tpl/prefs.tpl', 'prefs');
  $('.sued').text('Bereit.');
  /*
  setTimeout(function() {
    app_seitenwechsel('home', 'vor');
  }, 200);
  */
}