You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by hu...@apache.org on 2016/09/02 07:44:08 UTC

[06/17] incubator-ponymail git commit: fix missing brackets

fix missing brackets


Project: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/commit/d1f577b4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/tree/d1f577b4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/diff/d1f577b4

Branch: refs/heads/coffee-and-cake
Commit: d1f577b479203dad861324e6024d3ee304736b3b
Parents: 8b7e9c4
Author: Daniel Gruno <hu...@apache.org>
Authored: Thu Sep 1 17:09:19 2016 +0200
Committer: Daniel Gruno <hu...@apache.org>
Committed: Thu Sep 1 17:09:19 2016 +0200

----------------------------------------------------------------------
 site/js/coffee/dom_utils.coffee | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ponymail/blob/d1f577b4/site/js/coffee/dom_utils.coffee
----------------------------------------------------------------------
diff --git a/site/js/coffee/dom_utils.coffee b/site/js/coffee/dom_utils.coffee
index 5ac2692..66dbe06 100644
--- a/site/js/coffee/dom_utils.coffee
+++ b/site/js/coffee/dom_utils.coffee
@@ -105,13 +105,13 @@ cog = (div, size = 200) ->
             verticalAlign: 'middle',
             height: '500px'
             }
-        )
+        })
         
         i = mk('i', { class: 'fa fa-spin fa-cog', style: {
             fontSize: size+'pt !important',
             color: '#AAB'
             }
-        )
+        })
         app(idiv, [i, mk('br'), "Loading data, please wait..."])
         div.innerHTML = ""
         div.appendChild(idiv)