You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by jk...@apache.org on 2006/06/10 15:48:24 UTC

svn commit: r413298 - /tapestry/tapestry4/trunk/framework/src/js/dojo/src/widget/DropdownButton.js

Author: jkuhnert
Date: Sat Jun 10 06:48:23 2006
New Revision: 413298

URL: http://svn.apache.org/viewvc?rev=413298&view=rev
Log:
Upgraded dojo 

Added:
    tapestry/tapestry4/trunk/framework/src/js/dojo/src/widget/DropdownButton.js   (with props)

Added: tapestry/tapestry4/trunk/framework/src/js/dojo/src/widget/DropdownButton.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/framework/src/js/dojo/src/widget/DropdownButton.js?rev=413298&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/framework/src/js/dojo/src/widget/DropdownButton.js (added)
+++ tapestry/tapestry4/trunk/framework/src/js/dojo/src/widget/DropdownButton.js Sat Jun 10 06:48:23 2006
@@ -0,0 +1,29 @@
+/*
+	Copyright (c) 2004-2006, The Dojo Foundation
+	All Rights Reserved.
+
+	Licensed under the Academic Free License version 2.1 or above OR the
+	modified BSD license. For more information on Dojo licensing, see:
+
+		http://dojotoolkit.org/community/licensing.shtml
+*/
+
+dojo.provide("dojo.widget.DropdownButton");
+
+dojo.deprecated("dojo.widget.DropdownButton",  "use dojo.widget.ComboButton", "0.4");
+
+// Draws a button with a down arrow;
+// when you press the down arrow something appears (usually a menu)
+
+dojo.require("dojo.widget.*");
+
+dojo.widget.tags.addParseTreeHandler("dojo:dropdownbutton");
+
+dojo.widget.DropdownButton = function(){
+	dojo.widget.Widget.call(this);
+
+	this.widgetType = "DropdownButton";
+}
+dojo.inherits(dojo.widget.DropdownButton, dojo.widget.Widget);
+
+dojo.requireAfterIf("html", "dojo.widget.html.DropdownButton");

Propchange: tapestry/tapestry4/trunk/framework/src/js/dojo/src/widget/DropdownButton.js
------------------------------------------------------------------------------
    svn:eol-style = native