gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-merchant-frontends] branch master updated: Separatio


From: gnunet
Subject: [GNUnet-SVN] [taler-merchant-frontends] branch master updated: Separation between orders returned by tracking a transfer, and orders just gotten by scrolling.
Date: Fri, 14 Jul 2017 12:19:01 +0200

This is an automated email from the git hooks/post-receive script.

marcello pushed a commit to branch master
in repository merchant-frontends.

The following commit(s) were added to refs/heads/master by this push:
     new 9d25468  Separation between orders returned by tracking a transfer, 
and orders just gotten by scrolling.
9d25468 is described below

commit 9d2546803a66b3e76d55352fed3301b8fa0f8d97
Author: Marcello Stanisci <address@hidden>
AuthorDate: Fri Jul 14 12:18:13 2017 +0200

    Separation between orders returned by tracking a transfer,
    and orders just gotten by scrolling.
---
 talerfrontends/blog/static/backoffice.css | 10 ++++++++++
 talerfrontends/blog/static/backoffice.js  | 13 +++++++++----
 2 files changed, 19 insertions(+), 4 deletions(-)

diff --git a/talerfrontends/blog/static/backoffice.css 
b/talerfrontends/blog/static/backoffice.css
index ae24c14..83de325 100644
--- a/talerfrontends/blog/static/backoffice.css
+++ b/talerfrontends/blog/static/backoffice.css
@@ -88,6 +88,16 @@ th {
   }
 }
 
+#marker {
+  text-align: center;
+  padding: 0px;
+  padding-bottom: 4px;
+  border: 0px;
+  border-bottom: 2px;
+  border-style: solid;
+  margin-bottom: 50px;
+}
+
 .loader {
   margin-left: 30%;
   border: 7px solid #f3f3f3; /* Light grey */
diff --git a/talerfrontends/blog/static/backoffice.js 
b/talerfrontends/blog/static/backoffice.js
index b470afe..5c2e0bb 100644
--- a/talerfrontends/blog/static/backoffice.js
+++ b/talerfrontends/blog/static/backoffice.js
@@ -104,10 +104,15 @@ function toggle_overlay(force_close){
 }
 
 function make_marker(wtid){
-  var div = document.createElement("div");
-  div.className = "wtid-marker order-id";
-  div.textContent = wtid;
-  return div;
+  var tr = document.createElement("tr");
+  var td = document.createElement("td");
+  var p = document.createElement("p");
+  td.setAttribute("colspan", 3);
+  p.textContent = wtid.substr(0, 20) + "...";
+  p.setAttribute("id", "marker");
+  td.appendChild(p);
+  tr.appendChild(td);
+  return tr;
 }
 
 function track_transfer(exchange, wtid){

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]