You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2012/11/19 17:54:14 UTC

[9/9] git commit: Remove outdated JavaScript library

Remove outdated JavaScript library


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/6af73054
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/6af73054
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/6af73054

Branch: refs/heads/5.4-js-rewrite
Commit: 6af73054a6abb73a3e991691775788d2264c6553
Parents: 687ec2a
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Sat Nov 17 19:29:59 2012 +0000
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Sat Nov 17 19:29:59 2012 +0000

----------------------------------------------------------------------
 .../corelib/components/exceptiondisplay.js         |   29 ---------------
 1 files changed, 0 insertions(+), 29 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/6af73054/tapestry-core/src/main/resources/org/apache/tapestry5/corelib/components/exceptiondisplay.js
----------------------------------------------------------------------
diff --git a/tapestry-core/src/main/resources/org/apache/tapestry5/corelib/components/exceptiondisplay.js b/tapestry-core/src/main/resources/org/apache/tapestry5/corelib/components/exceptiondisplay.js
deleted file mode 100644
index fb11bc9..0000000
--- a/tapestry-core/src/main/resources/org/apache/tapestry5/corelib/components/exceptiondisplay.js
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright 2009 The Apache Software Foundation
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-Tapestry.stackFrameToggle = function(id)
-{
-    var checkbox = $(id);
-
-    checkbox.observe("click", function()
-    {
-        var newDisplay = checkbox.checked ? "none" : "list-item";
-
-        $$("LI.t-omitted-frame").each(function(e)
-        {
-            e.style.display = newDisplay;
-            e.style.listStyleType = "square";
-        });
-    });
-}