From 9f0d54067fefd1d3c9c6babf425d3d3a443eeccc Mon Sep 17 00:00:00 2001
From: ulrich <not disclosed>
Date: Wed, 03 Jan 2018 10:26:28 +0000
Subject: [PATCH] Dialog- und Nachrichtenbereich hinzugefuegt
---
app.js | 44 ++++++++++++++++++++++++++++++++++++++------
1 files changed, 38 insertions(+), 6 deletions(-)
diff --git a/app.js b/app.js
index fed1134..6328a75 100644
--- a/app.js
+++ b/app.js
@@ -1,17 +1,49 @@
var TPL_HOME = 'home';
var TPL_PREFS = 'prefs';
-var templateCache = {}; // mustache templates 'home', 'prefs'
+var TPL_SENDER = 'sender';
+var templateCache = {}; // mustache templates 'home', 'prefs', 'sender'
var prefsRendered = false;
function app_init() {
+ $('.dialog').hide();
$('.ost').hide();
- //app_menu_init("menu/", "hauptmenue.json", "../jslib/app-menu/app-menu.tpl", ".west");
- //app_get_template('tpl/home.tpl', 'home');
+ app_menu_init("menu/", "hauptmenue.json", "../jslib/app-menu/app-menu.tpl", ".west");
+ app_get_template('tpl/sender.tpl', TPL_SENDER);
//app_get_template('tpl/prefs.tpl', 'prefs');
$('.sued').text('Bereit.');
- /*
setTimeout(function() {
- app_seitenwechsel('home', 'vor');
+ app_get_sender();
}, 200);
- */
+}
+
+function app_nachricht_test() {
+ $('.dialog').slideDown(300);
+
+}
+
+/* --- Ajax-Aufrufe --- */
+
+function app_get_sender() {
+ $.ajax({
+ url: "api/sender.json",
+ type: "GET",
+ dataType : "json"
+ }).done(function( senderliste ) {
+ $("#sender").html(Mustache.render(templateCache[TPL_SENDER], senderliste));
+ });
+}
+
+/*
+ Ein Template vom Server in den Cache laden
+ template_url - home.tpl, prefs.tpl, sender.tpl
+ tname - 'home', 'prefs', 'sender'
+*/
+function app_get_template(template_url, tname) {
+ $.ajax({
+ url: template_url,
+ type: "GET",
+ dataType : "text"
+ }).done(function( template ) {
+ templateCache[tname] = template;
+ });
}
--
Gitblit v1.9.3