Sha256: 5165b40fbdeb5e6940a05610d9544bbe5aff0f5a62dc1ca8dc913b999026694c
Contents?: true
Size: 560 Bytes
Versions: 7
Compression:
Stored size: 560 Bytes
Contents
/* --- script: ART.js description: ART extensions license: Public domain (http://unlicense.org). authors: Yaroslaff Fedin requires: - ART/ART.Path - ART/ART.SVG - ART/ART.VML - ART/ART.Base - Core/Browser provides: [ART, ART.Features] ... */ ART.implement({ setHeight: function(height) { this.element.setAttribute('height', height); return this; }, setWidth: function(width) { this.element.setAttribute('width', width); return this; } }); ART.Features = {}; ART.Features.Blur = Browser.firefox; //TODO: Figure it out
Version data entries
7 entries across 7 versions & 1 rubygems