Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 7E4D1200B77 for ; Sat, 3 Sep 2016 11:18:55 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 7CCE4160ACE; Sat, 3 Sep 2016 09:18:55 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id C4DA4160ABB for ; Sat, 3 Sep 2016 11:18:54 +0200 (CEST) Received: (qmail 85287 invoked by uid 500); 3 Sep 2016 09:18:54 -0000 Mailing-List: contact commits-help@ponymail.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ponymail.incubator.apache.org Delivered-To: mailing list commits@ponymail.incubator.apache.org Received: (qmail 85278 invoked by uid 99); 3 Sep 2016 09:18:54 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 03 Sep 2016 09:18:54 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 9D462180600 for ; Sat, 3 Sep 2016 09:18:53 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -4.646 X-Spam-Level: X-Spam-Status: No, score=-4.646 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-1.426] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id 3zNZ4MMBbqy0 for ; Sat, 3 Sep 2016 09:18:52 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id 286F85F297 for ; Sat, 3 Sep 2016 09:18:52 +0000 (UTC) Received: (qmail 85214 invoked by uid 99); 3 Sep 2016 09:18:51 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 03 Sep 2016 09:18:51 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 137FCDFB91; Sat, 3 Sep 2016 09:18:51 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: humbedooh@apache.org To: commits@ponymail.incubator.apache.org Date: Sat, 03 Sep 2016 09:18:52 -0000 Message-Id: In-Reply-To: <08de0dbd18c34e0dabc3a850be3e8d72@git.apache.org> References: <08de0dbd18c34e0dabc3a850be3e8d72@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [3/5] incubator-ponymail git commit: push new state properly archived-at: Sat, 03 Sep 2016 09:18:55 -0000 push new state properly misplaced arg, argh! Project: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/commit/7df7aa5d Tree: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/tree/7df7aa5d Diff: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/diff/7df7aa5d Branch: refs/heads/coffee-and-cake Commit: 7df7aa5d04f5073f3aa1643e370335085a3b700d Parents: 1170586 Author: Daniel Gruno Authored: Sat Sep 3 11:17:54 2016 +0200 Committer: Daniel Gruno Committed: Sat Sep 3 11:17:54 2016 +0200 ---------------------------------------------------------------------- site/js/coffee/listview.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ponymail/blob/7df7aa5d/site/js/coffee/listview.coffee ---------------------------------------------------------------------- diff --git a/site/js/coffee/listview.coffee b/site/js/coffee/listview.coffee index 5ace897..45f0a69 100644 --- a/site/js/coffee/listview.coffee +++ b/site/js/coffee/listview.coffee @@ -83,7 +83,7 @@ listView = (hash, reParse) -> ### Push a new history state using new args ### newhref = "#{htmlfile}?#{args}" if location.href != newhref - window.history.pushState({}, newhref) + window.history.pushState({}, null, newhref) [list, domain] = ponymail_list.split("@", 2) ### Request month view from API, send to list view callback ###