From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: None (mailfrom) identity=mailfrom; client-ip=8.23.224.60; helo=out.smtp-auth.no-ip.com; envelope-from=kevin@carhart.net; receiver= Received: from out.smtp-auth.no-ip.com (smtp-auth.no-ip.com [8.23.224.60]) by hurricane.the-brannons.com (Postfix) with ESMTPS id 94BE777893 for ; Sat, 17 Feb 2018 02:52:01 -0800 (PST) X-No-IP: carhart.net@noip-smtp X-Report-Spam-To: abuse@no-ip.com Received: from carhart.net (unknown [99.52.200.227]) (Authenticated sender: carhart.net@noip-smtp) by smtp-auth.no-ip.com (Postfix) with ESMTPA id 9FF0D286 for ; Sat, 17 Feb 2018 02:52:54 -0800 (PST) Received: from carhart.net (localhost [127.0.0.1]) by carhart.net (8.13.8/8.13.8) with ESMTP id w1HAqqAj029038 for ; Sat, 17 Feb 2018 02:52:53 -0800 Received: from localhost (kevin@localhost) by carhart.net (8.13.8/8.13.8/Submit) with ESMTP id w1HAqp7C029027 for ; Sat, 17 Feb 2018 02:52:52 -0800 Date: Sat, 17 Feb 2018 02:52:51 -0800 (PST) From: Kevin Carhart To: Edbrowse-dev@lists.the-brannons.com In-Reply-To: <20180116115901.eklhad@comcast.net> Message-ID: References: <20180114105901.eklhad@comcast.net> <20180116115901.eklhad@comcast.net> User-Agent: Alpine 2.03 (LRH 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: [Edbrowse-dev] URL.prototype.slice X-BeenThere: edbrowse-dev@lists.the-brannons.com X-Mailman-Version: 2.1.25 Precedence: list List-Id: Edbrowse Development List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Feb 2018 10:52:01 -0000 Not related to the new release. It could wait or go in. I pulled up yahoo.com and several others, because I was curious how we're doing with the top websites. Some code in this file is trying to call "slice" on an object of the URL class. execute yui-min.js at 1 yui-min.js line 86: TypeError: undefined not callable (property 'slice' of [object Object]) execution complete We have given it the other string functions like substr, etc, but could we also pop this in: mw0.URL.prototype.slice = function(from, to) { return this.toString().slice(from, to); } It makes the error at 86 go away and a couple of others too. K