// Copyright 2010 The Closure Library Authors. All Rights Reserved.1//2// Licensed under the Apache License, Version 2.0 (the "License");3// you may not use this file except in compliance with the License.4// You may obtain a copy of the License at5//6// http://www.apache.org/licenses/LICENSE-2.07//8// Unless required by applicable law or agreed to in writing, software9// distributed under the License is distributed on an "AS-IS" BASIS,10// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.11// See the License for the specific language governing permissions and12// limitations under the License.1314/**15* @fileoverview Legacy stub for the goog.fx namespace. Requires the moved16* namespaces. Animation and easing have been moved to animation.js and17* easing.js. Users of this stub should move off so we may remove it in the18* future.19*20* @author [email protected] (Nathan Naze)21* @suppress {extraRequire} All the requires in this file are "extra"22* because this file is not actually using them.23*/2425goog.provide('goog.fx');2627goog.require('goog.asserts');28goog.require('goog.fx.Animation');29goog.require('goog.fx.Animation.EventType');30goog.require('goog.fx.Animation.State');31goog.require('goog.fx.AnimationEvent');32goog.require('goog.fx.Transition.EventType');33goog.require('goog.fx.easing');343536