Home | History | Annotate | Download | only in parse-only

Lines Matching refs:Methods

629 methods and functions like alert
2070 // converting a NodeList to an array using builtin methods.
4300 // Create scrollLeft and scrollTop methods
4327 // Create innerHeight, innerWidth, outerHeight and outerWidth methods
4405 var methods = options.implement;
4444 if (methods) object.implement(methods);
5064 var methods = {};
5066 if (!Number[name]) methods[name] = function(){
5070 Number.implement(methods);
5672 time-saver methods to let you easily work with HTML Elements.
6350 Contains Element methods for dealing with events, and custom Events.
6500 Contains methods for interacting with the styles of Elements in a fashionable way.
6642 Contains methods to work with size, scroll, or positioning of Elements and the window object.
6801 // private methods
8221 var methods = {};
8223 methods[method] = function(){
8229 Request.implement(methods);
8235 Extends the basic Request Class with additional methods for interacting with HTML responses.
8355 Extends the basic Request Class with additional methods for sending and receiving JSON data.
8433 Object.extend(klass, Class.Methods);
8456 Class.Methods = {
9956 Element.Methods = {
10540 Element.Methods.identify.counter = 1;
10542 Object.extend(Element.Methods, {
10543 getElementsBySelector: Element.Methods.select,
10544 childElements: Element.Methods.immediateDescendants
10558 Element.Methods.getStyle = Element.Methods.getStyle.wrap(
10592 Element.Methods.readAttribute = Element.Methods.readAttribute.wrap(
10603 Element.Methods.getOffsetParent = Element.Methods.getOffsetParent.wrap(
10619 Element.Methods[method] = Element.Methods[method].wrap(
10639 Element.Methods.cumulativeOffset = Element.Methods.cumulativeOffset.wrap(
10647 Element.Methods.getStyle = function(element, style) {
10667 Element.Methods.setOpacity = function(element, value) {
10776 Element.Methods.setOpacity = function(element, value) {
10785 Element.Methods.setOpacity = function(element, value) {
10805 Element.Methods.cumulativeOffset = function(element) {
10822 Element.Methods.update = function(element, content) {
10844 Element.Methods.replace = function(element, content) {
10918 Element.Methods.Simulated = {
10926 Element.Methods.ByTag = { };
10928 Object.extend(Element, Element.Methods);
10941 var Methods = { }, ByTag = Element.Methods.ByTag;
10947 var methods = Object.clone(Methods),
10950 // extend methods for specific tags
10951 if (ByTag[tagName]) Object.extend(methods, ByTag[tagName]);
10953 for (property in methods) {
10954 value = methods[property];
10964 // extend methods for all tags (Safari doesn't need this)
10966 Object.extend(Methods, Element.Methods);
10967 Object.extend(Methods, Element.Methods.Simulated);
10978 return Element.Methods.Simulated.hasAttribute(element, attribute);
10981 Element.addMethods = function(methods) {
10982 var F = Prototype.BrowserFeatures, T = Element.Methods.ByTag;
10984 if (!methods) {
10985 Object.extend(Form, Form.Methods);
10986 Object.extend(Form.Element, Form.Element.Methods);
10987 Object.extend(Element.Methods.ByTag, {
10988 "FORM": Object.clone(Form.Methods),
10989 "INPUT": Object.clone(Form.Element.Methods),
10990 "SELECT": Object.clone(Form.Element.Methods),
10991 "TEXTAREA": Object.clone(Form.Element.Methods)
10996 var tagName = methods;
10997 methods = arguments[1];
11000 if (!tagName) Object.extend(Element.Methods, methods || { });
11008 if (!Element.Methods.ByTag[tagName])
11009 Element.Methods.ByTag[tagName] = { };
11010 Object.extend(Element.Methods.ByTag[tagName], methods);
11013 function copy(methods, destination, onlyIfAbsent) {
11015 for (var property in methods) {
11016 var value = methods[property];
11049 copy(Element.Methods, HTMLElement.prototype);
11050 copy(Element.Methods.Simulated, HTMLElement.prototype, true);
11054 for (var tag in Element.Methods.ByTag) {
11061 Object.extend(Element, Element.Methods);
11245 // use the Selector.assertions methods unless the selector
11856 Form.Methods = {
11951 Form.Element.Methods = {
12014 var $F = Form.Element.Methods.getValue;
12195 Event.Methods = (function() {
12277 var methods = Object.keys(Event.Methods).inject({ }, function(m, name) {
12278 m[name] = Event.Methods[name].methodize();
12283 Object.extend(methods, {
12301 return Object.extend(event, methods);
12306 Object.extend(Event.prototype, methods);
12460 Object.extend(Event, Event.Methods);
12469 fire: Element.Methods.fire.methodize(),
12470 observe: Element.Methods.observe.methodize(),
12471 stopObserving: Element.Methods.stopObserving.methodize(),
12518 Element.Methods.childOf = Element.Methods.descendantOf;
12540 // This should be moved to script.aculo.us; notice the deprecated methods
12541 // further below, that map to the newer Element methods.
12599 // Deprecation layer -- use newer Element methods now (1.5.2).
12601 cumulativeOffset: Element.Methods.cumulativeOffset,
12603 positionedOffset: Element.Methods.positionedOffset,
12615 realOffset: Element.Methods.cumulativeScrollOffset,
12617 offsetParent: Element.Methods.getOffsetParent,
12619 page: Element.Methods.viewportOffset,
12660 }(Element.Methods);