Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/fx/fx.js
2868 views
1
// Copyright 2010 The Closure Library Authors. All Rights Reserved.
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
// http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS-IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14
15
/**
16
* @fileoverview Legacy stub for the goog.fx namespace. Requires the moved
17
* namespaces. Animation and easing have been moved to animation.js and
18
* easing.js. Users of this stub should move off so we may remove it in the
19
* future.
20
*
21
* @author [email protected] (Nathan Naze)
22
* @suppress {extraRequire} All the requires in this file are "extra"
23
* because this file is not actually using them.
24
*/
25
26
goog.provide('goog.fx');
27
28
goog.require('goog.asserts');
29
goog.require('goog.fx.Animation');
30
goog.require('goog.fx.Animation.EventType');
31
goog.require('goog.fx.Animation.State');
32
goog.require('goog.fx.AnimationEvent');
33
goog.require('goog.fx.Transition.EventType');
34
goog.require('goog.fx.easing');
35
36