Skip to content

Commit

Permalink
remove private function appendCode (no longer needed)
Browse files Browse the repository at this point in the history
  • Loading branch information
dound committed Dec 6, 2008
1 parent 283f46d commit be9b285
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions jtoolbar.js
Expand Up @@ -41,18 +41,6 @@ var JTB = function() {
}
}

function appendCode(e, attrName, newCode) {
var code = e.getAttribute(attrName);
if(code === null) {
code = '';
}
else {
code += '; ';
}
code += newCode;
e.setAttribute(attrName, code);
}

function createCookie(name,value,days) {
var expires;
if(days) {
Expand Down

0 comments on commit be9b285

Please sign in to comment.