Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/fx/fx.js
4532 views
1
/**
2
* @license
3
* Copyright The Closure Library Authors.
4
* SPDX-License-Identifier: Apache-2.0
5
*/
6
7
/**
8
* @fileoverview Legacy stub for the goog.fx namespace. Requires the moved
9
* namespaces. Animation and easing have been moved to animation.js and
10
* easing.js. Users of this stub should move off so we may remove it in the
11
* future.
12
*
13
* @suppress {extraRequire} All the requires in this file are "extra"
14
* because this file is not actually using them.
15
*/
16
17
goog.provide('goog.fx');
18
19
goog.require('goog.asserts');
20
goog.require('goog.fx.Animation');
21
goog.require('goog.fx.Animation.EventType');
22
goog.require('goog.fx.Animation.State');
23
goog.require('goog.fx.AnimationEvent');
24
goog.require('goog.fx.Transition.EventType');
25
goog.require('goog.fx.easing');
26
27