From 9fc14cfa306274a52d7278997fe696b3adb66b18 Mon Sep 17 00:00:00 2001 From: lilia Date: Fri, 10 Oct 2014 17:06:55 -0700 Subject: [PATCH] Remove erroneous comment re: MDN copyright In fact, the code samples we have copied from MDN are declared to be public domain (see link below): "Code samples added on or after August 20, 2010 are in the public domain." https://developer.mozilla.org/en-US/docs/MDN/About#Copyrights_and_licenses AFAICT we're using code from this page, last updated 10/4/14: https://developer.mozilla.org/en-US/docs/Web/API/WindowBase64/Base64_encoding_and_decoding --- js/helpers.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/js/helpers.js b/js/helpers.js index a74f9056..4fad4191 100644 --- a/js/helpers.js +++ b/js/helpers.js @@ -14,8 +14,6 @@ * along with this program. If not, see . */ -/* START CRAP TO BE DELETED */ -//Stolen from MDN (TODO: replace with something else so we arent infringing their copyright) function b64ToUint6 (nChr) { return nChr > 64 && nChr < 91 ? @@ -90,7 +88,6 @@ function base64EncArr (aBytes) { } -/* END CRAP TO BE DELETED */ window.textsecure = window.textsecure || {};