From 6c45b7b2fad567c5b6d499dafc3c90421a2efa18 Mon Sep 17 00:00:00 2001 From: Leif Johansson Date: Fri, 25 Nov 2011 21:06:12 +0100 Subject: update to latest jquery 1.9pre --- src/main/webapp/js/jquery.ui.button.js | 417 --------------------------------- 1 file changed, 417 deletions(-) delete mode 100644 src/main/webapp/js/jquery.ui.button.js (limited to 'src/main/webapp/js/jquery.ui.button.js') diff --git a/src/main/webapp/js/jquery.ui.button.js b/src/main/webapp/js/jquery.ui.button.js deleted file mode 100644 index 32e00e9..0000000 --- a/src/main/webapp/js/jquery.ui.button.js +++ /dev/null @@ -1,417 +0,0 @@ -/* - * jQuery UI Button @VERSION - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Button - * - * Depends: - * jquery.ui.core.js - * jquery.ui.widget.js - */ -(function( $, undefined ) { - -var lastActive, startXPos, startYPos, clickDragged, - baseClasses = "ui-button ui-widget ui-state-default ui-corner-all", - stateClasses = "ui-state-hover ui-state-active ", - typeClasses = "ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only", - formResetHandler = function() { - var buttons = $( this ).find( ":ui-button" ); - setTimeout(function() { - buttons.button( "refresh" ); - }, 1 ); - }, - radioGroup = function( radio ) { - var name = radio.name, - form = radio.form, - radios = $( [] ); - if ( name ) { - if ( form ) { - radios = $( form ).find( "[name='" + name + "']" ); - } else { - radios = $( "[name='" + name + "']", radio.ownerDocument ) - .filter(function() { - return !this.form; - }); - } - } - return radios; - }; - -$.widget( "ui.button", { - defaultElement: "