Modifier and Type | Field and Description |
---|---|
Objs.Property<Function> |
IArguments.callee |
Modifier and Type | Method and Description |
---|---|
static Function |
Function.$as(Object obj)
Casts given object to this class.
|
Function |
IArguments.callee() |
static <A> Function |
Function.newFunction(Function.A1<? super A,? extends Object> fn,
Class<A> argTypeA)
Factory method that wraps provided function interface into JavaScript
function object.
|
static <A,B> Function |
Function.newFunction(Function.A2<? super A,? super B,? extends Object> fn,
Class<A> argTypeA,
Class<B> argTypeB)
Factory method that wraps provided function interface into JavaScript
function object.
|
static <A,B,C> Function |
Function.newFunction(Function.A3<? super A,? super B,? super C,? extends Object> fn,
Class<A> argTypeA,
Class<B> argTypeB,
Class<C> argTypeC)
Factory method that wraps provided function interface into JavaScript
function object.
|
static <A,B,C,D> Function |
Function.newFunction(Function.A4<? super A,? super B,? super C,? super D,? extends Object> fn,
Class<A> argTypeA,
Class<B> argTypeB,
Class<C> argTypeC,
Class<D> argTypeD)
Factory method that wraps provided function interface into JavaScript
function object.
|
static Function |
Function.newFunction(Function.A5<? extends Object,? extends Object,? extends Object,? extends Object,? extends Object,? extends Object> fn)
Factory method that wraps provided function interface into JavaScript
function object.
|
static Function |
Function.newFunction(Function.A5<? extends Object,? extends Object,? extends Object,? extends Object,? extends Object,? extends Object> fn,
Class[] argTypes)
Factory method that wraps provided function interface into JavaScript
function object.
|
static <A,B,C,D,E> |
Function.newFunction(Function.A5<? super A,? super B,? super C,? super D,? super E,? extends Object> fn,
Class<A> argTypeA,
Class<B> argTypeB,
Class<C> argTypeC,
Class<D> argTypeD,
Class<E> argTypeE)
Factory method that wraps provided function interface into JavaScript
function object.
|
static Function |
Function.newFunction(String... args)
Calls the
constructor . |
Modifier and Type | Class and Description |
---|---|
class |
Type |
Modifier and Type | Field and Description |
---|---|
Objs.Property<Union.A3<String,Function,Objs[]>> |
IComponentOptions.controller
Controller constructor function that should be associated with newly created scope or the name of a registered
controller if passed as a string.
|
Objs.Property<Function> |
ComponentDefinition.loader |
Objs.Property<Function> |
RouteDefinition.loader |
Objs.Property<Function> |
IAngularEvent.preventDefault
calling preventDefault sets defaultPrevented flag to true.
|
Objs.Property<Function> |
IAngularEvent.stopPropagation
calling stopPropagation function will cancel further event propagation (available only for events that were $emit-ed).
|
Objs.Property<Union.A3<String,Function,Objs[]>> |
IComponentOptions.template
html template as a string or a function that returns an html template as a string which should be used as the
contents of this component.
|
Objs.Property<Union.A2<String,Function>> |
IDirective.template |
Objs.Property<Union.A3<String,Function,Objs[]>> |
IComponentOptions.templateUrl
path or function that returns a path to an html template that should be used as the contents of this component.
|
Objs.Property<Union.A2<String,Function>> |
IDirective.templateUrl |
Modifier and Type | Method and Description |
---|---|
<T> Function |
IAttributes.$observe(String name,
Function.A1<? super T,? extends Object> fn)
Set DOM element attribute value.
|
Function |
IAngularStatic.bind(Object context,
Function fn,
Object... args) |
Function |
ComponentDefinition.loader() |
Function |
RouteDefinition.loader() |
Function |
IAngularEvent.preventDefault() |
Function |
IAngularEvent.stopPropagation() |
Modifier and Type | Method and Description |
---|---|
IAugmentedJQuery |
IAugmentedJQueryStatic.$apply(Function func) |
<T> T |
IControllerService.$apply(Function controllerConstructor) |
IPromise<Object> |
IIntervalService.$apply(Function func,
double delay,
double count) |
IPromise<Object> |
IIntervalService.$apply(Function func,
double delay,
double count,
Boolean invokeApply) |
IPromise<Object> |
IIntervalService.$apply(Function func,
double delay,
double count,
Boolean invokeApply,
Object... args) |
<T> T |
IControllerService.$apply(Function controllerConstructor,
Object locals) |
<T> T |
IControllerService.$apply(Function controllerConstructor,
Object locals,
Boolean later) |
<T> T |
IControllerService.$apply(Function controllerConstructor,
Object locals,
Boolean later,
String ident) |
void |
IHttpBackendService.$apply(String method,
String url,
Object post,
Function callback) |
void |
IHttpBackendService.$apply(String method,
String url,
Object post,
Function callback,
Object headers) |
void |
IHttpBackendService.$apply(String method,
String url,
Object post,
Function callback,
Object headers,
double timeout) |
void |
IHttpBackendService.$apply(String method,
String url,
Object post,
Function callback,
Object headers,
double timeout,
Boolean withCredentials) |
Function |
IAngularStatic.bind(Object context,
Function fn,
Object... args) |
IModule |
IModule.config(Function configFn)
Use this method to register work which needs to be performed on module loading.
|
IModule |
IModule.controller(String name,
Function controllerConstructor)
The $controller service is used by Angular to create new controllers.
|
IModule |
IModule.decorator(String name,
Function decoratorConstructor)
Register a service decorator with the $injector.
|
ICompileProvider |
ICompileProvider.directive(Objs directivesMap,
Function directiveFactory) |
ICompileProvider |
ICompileProvider.directive(String name,
Function directiveFactory) |
IAugmentedJQuery |
IAngularStatic.element(Function func)
Wraps a raw DOM element or HTML string as a jQuery element.
|
IModule |
IModule.factory(String name,
Function $getFn)
Register a service factory, which will be called to return the service instance.
|
IModule |
IModule.filter(String name,
Function filterFactoryFunction) |
IModule |
IAngularStatic.module(String name,
String[] requires,
Function configFn)
The angular.module is a global place for creating, registering and retrieving Angular modules.
|
void |
IControllerProvider.register(String name,
Function controllerConstructor) |
IModule |
IModule.run(Function initializationFunction)
Run blocks are the closest thing in Angular to the main method.
|
IModule |
IModule.service(String name,
Function serviceConstructor)
Register a service constructor, which will be invoked with new to create the service instance.
|
Modifier and Type | Method and Description |
---|---|
Array<String> |
IInjectorService.annotate(Function fn) |
Array<String> |
IInjectorService.annotate(Function fn,
Boolean strictDi) |
void |
IProvideService.decorator(String name,
Function decorator)
Register a service decorator with the $injector.
|
IServiceProvider |
IProvideService.factory(String name,
Function serviceFactoryFunction) |
<T> T |
IInjectorService.instantiate(Function typeConstructor) |
<T> T |
IInjectorService.instantiate(Function typeConstructor,
Object locals) |
Object |
IInjectorService.invoke(Function func) |
Object |
IInjectorService.invoke(Function func,
Object context) |
Object |
IInjectorService.invoke(Function func,
Object context,
Object locals) |
IServiceProvider |
IProvideService.provider(String name,
Function serviceProviderConstructor) |
IServiceProvider |
IProvideService.service(String name,
Function constructor) |
Modifier and Type | Method and Description |
---|---|
void |
PerfWidgetExternal.addEventListener(String eventType,
Function callback) |
void |
PerfWidgetExternal.removeEventListener(String eventType,
Function callback) |
Modifier and Type | Field and Description |
---|---|
Objs.Property<Function> |
JQueryAnimationOptions.complete
A function to call once the animation is complete.
|
Modifier and Type | Method and Description |
---|---|
Function |
JQueryAnimationOptions.complete() |
Modifier and Type | Method and Description |
---|---|
JQueryCallback |
JQueryCallback.add(Function callbacks)
Add a callback or a collection of callbacks to a callback list.
|
JQueryCallback |
JQueryCallback.add(Function[] callbacks)
Add a callback or a collection of callbacks to a callback list.
|
JQuery |
JQuery.animate(Objs properties,
double duration,
Function complete)
Perform a custom animation of a set of CSS properties.
|
JQuery |
JQuery.animate(Objs properties,
double duration,
String easing,
Function complete)
Perform a custom animation of a set of CSS properties.
|
JQuery |
JQuery.animate(Objs properties,
String duration,
Function complete)
Perform a custom animation of a set of CSS properties.
|
JQuery |
JQuery.animate(Objs properties,
String duration,
String easing,
Function complete)
Perform a custom animation of a set of CSS properties.
|
JQuery |
JQuery.fadeIn(double duration,
Function complete)
Display the matched elements by fading them to opaque.
|
JQuery |
JQuery.fadeIn(double duration,
String easing,
Function complete)
Display the matched elements by fading them to opaque.
|
JQuery |
JQuery.fadeIn(String duration,
Function complete)
Display the matched elements by fading them to opaque.
|
JQuery |
JQuery.fadeIn(String duration,
String easing,
Function complete)
Display the matched elements by fading them to opaque.
|
JQuery |
JQuery.fadeOut(double duration,
Function complete)
Hide the matched elements by fading them to transparent.
|
JQuery |
JQuery.fadeOut(double duration,
String easing,
Function complete)
Hide the matched elements by fading them to transparent.
|
JQuery |
JQuery.fadeOut(String duration,
Function complete)
Hide the matched elements by fading them to transparent.
|
JQuery |
JQuery.fadeOut(String duration,
String easing,
Function complete)
Hide the matched elements by fading them to transparent.
|
JQuery |
JQuery.fadeTo(double duration,
double opacity,
Function complete)
Adjust the opacity of the matched elements.
|
JQuery |
JQuery.fadeTo(double duration,
double opacity,
String easing,
Function complete)
Adjust the opacity of the matched elements.
|
JQuery |
JQuery.fadeTo(String duration,
double opacity,
Function complete)
Adjust the opacity of the matched elements.
|
JQuery |
JQuery.fadeTo(String duration,
double opacity,
String easing,
Function complete)
Adjust the opacity of the matched elements.
|
JQuery |
JQuery.fadeToggle(double duration,
Function complete)
Display or hide the matched elements by animating their opacity.
|
JQuery |
JQuery.fadeToggle(double duration,
String easing,
Function complete)
Display or hide the matched elements by animating their opacity.
|
JQuery |
JQuery.fadeToggle(String duration,
Function complete)
Display or hide the matched elements by animating their opacity.
|
JQuery |
JQuery.fadeToggle(String duration,
String easing,
Function complete)
Display or hide the matched elements by animating their opacity.
|
Boolean |
JQueryCallback.has(Function callback)
Determine whether a supplied callback is in a list
|
JQuery |
JQuery.hide(double duration,
Function complete)
Hide the matched elements.
|
JQuery |
JQuery.hide(double duration,
String easing,
Function complete)
Hide the matched elements.
|
JQuery |
JQuery.hide(String duration,
Function complete)
Hide the matched elements.
|
JQuery |
JQuery.hide(String duration,
String easing,
Function complete)
Hide the matched elements.
|
JQuery |
JQueryStatic.queue(Element element,
String queueName,
Function callback)
Manipulate the queue of functions to be executed on the matched element.
|
JQuery |
JQueryStatic.queue(Element element,
String queueName,
Function[] newQueue)
Manipulate the queue of functions to be executed on the matched element.
|
JQuery |
JQuery.queue(Function callback)
Manipulate the queue of functions to be executed, once for each matched element.
|
JQuery |
JQuery.queue(Function[] newQueue)
Manipulate the queue of functions to be executed, once for each matched element.
|
JQuery |
JQuery.queue(String queueName,
Function callback)
Manipulate the queue of functions to be executed, once for each matched element.
|
JQuery |
JQuery.queue(String queueName,
Function[] newQueue)
Manipulate the queue of functions to be executed, once for each matched element.
|
JQueryCallback |
JQueryCallback.remove(Function callbacks)
Remove a callback or a collection of callbacks from a callback list.
|
JQueryCallback |
JQueryCallback.remove(Function[] callbacks)
Remove a callback or a collection of callbacks from a callback list.
|
JQuery |
JQuery.show(double duration,
Function complete)
Display the matched elements.
|
JQuery |
JQuery.show(double duration,
String easing,
Function complete)
Display the matched elements.
|
JQuery |
JQuery.show(String duration,
Function complete)
Display the matched elements.
|
JQuery |
JQuery.show(String duration,
String easing,
Function complete)
Display the matched elements.
|
JQuery |
JQuery.slideDown(double duration,
Function complete)
Display the matched elements with a sliding motion.
|
JQuery |
JQuery.slideDown(double duration,
String easing,
Function complete)
Display the matched elements with a sliding motion.
|
JQuery |
JQuery.slideDown(String duration,
Function complete)
Display the matched elements with a sliding motion.
|
JQuery |
JQuery.slideDown(String duration,
String easing,
Function complete)
Display the matched elements with a sliding motion.
|
JQuery |
JQuery.slideToggle(double duration,
Function complete)
Display or hide the matched elements with a sliding motion.
|
JQuery |
JQuery.slideToggle(double duration,
String easing,
Function complete)
Display or hide the matched elements with a sliding motion.
|
JQuery |
JQuery.slideToggle(String duration,
Function complete)
Display or hide the matched elements with a sliding motion.
|
JQuery |
JQuery.slideToggle(String duration,
String easing,
Function complete)
Display or hide the matched elements with a sliding motion.
|
JQuery |
JQuery.slideUp(double duration,
Function complete)
Hide the matched elements with a sliding motion.
|
JQuery |
JQuery.slideUp(double duration,
String easing,
Function complete)
Hide the matched elements with a sliding motion.
|
JQuery |
JQuery.slideUp(String duration,
Function complete)
Hide the matched elements with a sliding motion.
|
JQuery |
JQuery.slideUp(String duration,
String easing,
Function complete)
Hide the matched elements with a sliding motion.
|
JQuery |
JQuery.toggle(double duration,
Function complete)
Display or hide the matched elements.
|
JQuery |
JQuery.toggle(double duration,
String easing,
Function complete)
Display or hide the matched elements.
|
JQuery |
JQuery.toggle(String duration,
Function complete)
Display or hide the matched elements.
|
JQuery |
JQuery.toggle(String duration,
String easing,
Function complete)
Display or hide the matched elements.
|
Modifier and Type | Method and Description |
---|---|
Object |
KnockoutBindingContext.createChildContext(Object dataItemOrAccessor,
Object dataItemAlias,
Function extendCallback) |
void |
KnockoutUtils.registerEventHandler(Object element,
Object eventType,
Function handler) |
Object |
KnockoutStatic.renderTemplate(Function template,
KnockoutBindingContext dataOrBindingContext,
Objs options,
Node[] targetNodeOrNodeArray,
String renderMode) |
Object |
KnockoutStatic.renderTemplate(Function template,
KnockoutBindingContext dataOrBindingContext,
Objs options,
Node targetNodeOrNodeArray,
String renderMode) |
Object |
KnockoutStatic.renderTemplate(Function template,
Object viewModel) |
Object |
KnockoutStatic.renderTemplate(Function template,
Object viewModel,
Object options) |
Object |
KnockoutStatic.renderTemplate(Function template,
Object viewModel,
Object options,
Object target) |
Object |
KnockoutStatic.renderTemplate(Function template,
Object viewModel,
Object options,
Object target,
Object renderMode) |
Object |
KnockoutStatic.renderTemplate(Function template,
Object dataOrBindingContext,
Objs options,
Node[] targetNodeOrNodeArray,
String renderMode) |
Object |
KnockoutStatic.renderTemplate(Function template,
Object dataOrBindingContext,
Objs options,
Node targetNodeOrNodeArray,
String renderMode) |
Object |
KnockoutStatic.renderTemplateForEach(Function template,
KnockoutObservable<Object> arrayOrObservableArray,
Objs options,
Node targetNode,
KnockoutBindingContext parentBindingContext) |
Object |
KnockoutStatic.renderTemplateForEach(Function template,
Object[] arrayOrObservableArray,
Objs options,
Node targetNode,
KnockoutBindingContext parentBindingContext) |
void |
KnockoutTemplateEngine.rewriteTemplate(Object template,
Function rewriterCallback,
Document templateDocument) |
String |
KnockoutUtils.stringifyJson(Object data,
Function replacer) |
String |
KnockoutUtils.stringifyJson(Object data,
Function replacer,
String space) |
String |
KnockoutStatic.toJSON(Object viewModel,
Function replacer) |
String |
KnockoutStatic.toJSON(Object viewModel,
Function replacer,
Object space) |
Modifier and Type | Method and Description |
---|---|
static Array<Function> |
Exports.listeners(String event) |
Modifier and Type | Method and Description |
---|---|
static void |
Exports.addListener(String event,
Function listener) |
static void |
Exports.disconnect(Function callback) |
static Object |
Exports.on(String event,
Function listener) |
static void |
Exports.once(String event,
Function listener) |
static void |
Exports.removeListener(String event,
Function listener) |
Modifier and Type | Method and Description |
---|---|
void |
Domain.run(Function fn) |
Modifier and Type | Method and Description |
---|---|
Array<Function> |
EventEmitter.listeners(String event) |
Modifier and Type | Method and Description |
---|---|
Object |
EventEmitter.addListener(String event,
Function listener) |
Object |
EventEmitter.on(String event,
Function listener) |
Object |
EventEmitter.once(String event,
Function listener) |
Object |
EventEmitter.removeListener(String event,
Function listener) |
Modifier and Type | Method and Description |
---|---|
void |
ClientRequest.end(Buffer buffer,
Function cb) |
void |
ServerResponse.end(Buffer buffer,
Function cb) |
void |
ClientRequest.end(String str,
Function cb) |
void |
ServerResponse.end(String str,
Function cb) |
void |
ClientRequest.end(String str,
String encoding,
Function cb) |
void |
ServerResponse.end(String str,
String encoding,
Function cb) |
Timer |
IncomingMessage.setTimeout(double msecs,
Function callback) |
void |
ClientRequest.setTimeout(double timeout,
Function callback) |
void |
Server.setTimeout(double msecs,
Function callback) |
Boolean |
ClientRequest.write(Buffer buffer,
Function cb) |
Boolean |
ServerResponse.write(Buffer buffer,
Function cb) |
Boolean |
ClientRequest.write(String str,
Function cb) |
Boolean |
ServerResponse.write(String str,
Function cb) |
Boolean |
ClientRequest.write(String str,
String encoding,
Function cb) |
Boolean |
ServerResponse.write(String str,
String encoding,
Function cb) |
Modifier and Type | Method and Description |
---|---|
static Server |
Exports.createServer(ServerOptions options,
Function requestListener) |
Modifier and Type | Method and Description |
---|---|
Server |
Server.close(Function callback) |
void |
Socket.connect(double port,
String host,
Function connectionListener) |
static Socket |
Exports.connect(double port,
String host,
Function connectionListener) |
static Socket |
Exports.connect(Objs options,
Function connectionListener) |
void |
Socket.connect(String path,
Function connectionListener) |
static Socket |
Exports.connect(String path,
Function connectionListener) |
static Socket |
Exports.createConnection(double port,
String host,
Function connectionListener) |
static Socket |
Exports.createConnection(Objs options,
Function connectionListener) |
static Socket |
Exports.createConnection(String path,
Function connectionListener) |
void |
Socket.end(Buffer buffer,
Function cb) |
void |
Socket.end(String str,
Function cb) |
void |
Socket.end(String str,
String encoding,
Function cb) |
Server |
Server.listen(double port,
double backlog,
Function listeningListener) |
Server |
Server.listen(double port,
Function listeningListener) |
Server |
Server.listen(double port,
String hostname,
double backlog,
Function listeningListener) |
Server |
Server.listen(double port,
String hostname,
Function listeningListener) |
Server |
Server.listen(ListenOptions options,
Function listeningListener) |
Server |
Server.listen(Object handle,
double backlog,
Function listeningListener) |
Server |
Server.listen(Object handle,
Function listeningListener) |
Server |
Server.listen(String path,
double backlog,
Function listeningListener) |
Server |
Server.listen(String path,
Function listeningListener) |
void |
Socket.setTimeout(double timeout,
Function callback) |
Boolean |
Socket.write(Buffer buffer,
Function cb) |
Boolean |
Socket.write(Object data,
String encoding,
Function callback) |
Boolean |
Socket.write(String str,
Function cb) |
Boolean |
Socket.write(String str,
String encoding,
Function cb) |
Modifier and Type | Field and Description |
---|---|
Objs.Property<Function> |
Global.Promise |
Objs.Property<Function> |
Global.Symbol |
Objs.Property<Function> |
Global.Uint8ClampedArray |
Modifier and Type | Method and Description |
---|---|
Function |
Global.Promise() |
Function |
Global.Symbol() |
Function |
Global.Uint8ClampedArray() |
Modifier and Type | Method and Description |
---|---|
Array<Function> |
EventEmitter.listeners(String event) |
Modifier and Type | Method and Description |
---|---|
Object |
EventEmitter.addListener(String event,
Function listener) |
Object |
Domain.addListener(String event,
Function listener) |
void |
WritableStream.end(Buffer buffer,
Function cb) |
void |
WritableStream.end(String str,
Function cb) |
void |
WritableStream.end(String str,
String encoding,
Function cb) |
void |
Process.nextTick(Function callback) |
Object |
EventEmitter.on(String event,
Function listener) |
Object |
Domain.on(String event,
Function listener) |
Object |
EventEmitter.once(String event,
Function listener) |
Object |
Domain.once(String event,
Function listener) |
Object |
EventEmitter.removeListener(String event,
Function listener) |
Object |
Domain.removeListener(String event,
Function listener) |
void |
Domain.run(Function fn) |
Boolean |
WritableStream.write(Buffer buffer,
Function cb) |
Boolean |
WritableStream.write(String buffer,
Function cb) |
Boolean |
WritableStream.write(String str,
String encoding,
Function cb) |
Modifier and Type | Field and Description |
---|---|
Objs.Property<Function> |
ParseOptions.decodeURIComponent |
Objs.Property<Function> |
StringifyOptions.encodeURIComponent |
Modifier and Type | Method and Description |
---|---|
Function |
ParseOptions.decodeURIComponent() |
Function |
StringifyOptions.encodeURIComponent() |
Modifier and Type | Field and Description |
---|---|
Objs.Property<Function> |
ReplOptions.eval |
Objs.Property<Function> |
ReplOptions.writer |
Modifier and Type | Method and Description |
---|---|
Function |
ReplOptions.eval() |
Function |
ReplOptions.writer() |
Modifier and Type | Method and Description |
---|---|
void |
Transform._flush(Function callback) |
void |
Transform._transform(Object chunk,
String encoding,
Function callback) |
void |
Duplex._write(Object chunk,
String encoding,
Function callback) |
void |
Writable._write(Object chunk,
String encoding,
Function callback) |
void |
Duplex.end(Object chunk,
Function cb) |
void |
Transform.end(Object chunk,
Function cb) |
void |
Writable.end(Object chunk,
Function cb) |
void |
Duplex.end(Object chunk,
String encoding,
Function cb) |
void |
Transform.end(Object chunk,
String encoding,
Function cb) |
void |
Writable.end(Object chunk,
String encoding,
Function cb) |
Boolean |
Duplex.write(Object chunk,
Function cb) |
Boolean |
Transform.write(Object chunk,
Function cb) |
Boolean |
Writable.write(Object chunk,
Function cb) |
Boolean |
Duplex.write(Object chunk,
String encoding,
Function cb) |
Boolean |
Transform.write(Object chunk,
String encoding,
Function cb) |
Boolean |
Writable.write(Object chunk,
String encoding,
Function cb) |
Modifier and Type | Method and Description |
---|---|
static AnimationDescriptor |
Exports.mina(double a,
double A,
double b,
double B,
Function get,
Function set) |
static AnimationDescriptor |
Exports.mina(double a,
double A,
double b,
double B,
Function get,
Function set,
Function.A1<? super Number,? extends Number> easing) |
Modifier and Type | Field and Description |
---|---|
Objs.Property<Function> |
MinaAnimation.duration |
Objs.Property<Function> |
MinaAnimation.easing |
Objs.Property<Function> |
MinaAnimation.speed |
Objs.Property<Function> |
MinaAnimation.status |
Objs.Property<Function> |
MinaAnimation.stop |
Modifier and Type | Method and Description |
---|---|
Function |
MinaAnimation.duration() |
Function |
MinaAnimation.easing() |
Function |
MinaAnimation.speed() |
Function |
MinaAnimation.status() |
Function |
MinaAnimation.stop() |
Modifier and Type | Method and Description |
---|---|
static XMLHttpRequest |
Exports.ajax(String url,
Function callback) |
static XMLHttpRequest |
Exports.ajax(String url,
Function callback,
Objs scope) |
static XMLHttpRequest |
Exports.ajax(String url,
Objs postData,
Function callback) |
static XMLHttpRequest |
Exports.ajax(String url,
Objs postData,
Function callback,
Objs scope) |
static XMLHttpRequest |
Exports.ajax(String url,
String postData,
Function callback) |
static XMLHttpRequest |
Exports.ajax(String url,
String postData,
Function callback,
Objs scope) |
Set |
Set.bind(String attr,
Function callback) |
Set |
Set.forEach(Function callback) |
Set |
Set.forEach(Function callback,
Objs thisArg) |
static void |
Exports.load(String url,
Function callback) |
static void |
Exports.load(String url,
Function callback,
Objs scope) |
static void |
Exports.plugin(Function f) |
Copyright © 2018. All rights reserved.