diff --git a/client/dcwebui.js b/client/dcwebui.js index 6b27a30..66a3387 100644 --- a/client/dcwebui.js +++ b/client/dcwebui.js @@ -95,7 +95,7 @@ var b64 = function(str) { })).replace(/=/g, ''); } -// https://gist.github.com/eligrey/1276030 +// @ref https://gist.github.com/eligrey/1276030 var appendInnerHTML = function($el, html) { var child = document.createElement("span"); child.innerHTML = html; @@ -106,7 +106,7 @@ var appendInnerHTML = function($el, html) { } }; -// http://stackoverflow.com/a/5598797 +// @ref http://stackoverflow.com/a/5598797 function getOffsetLeft( elem ) { var offsetLeft = 0; do {