From aa2bde2701947117b8107828a375d18db73a30db Mon Sep 17 00:00:00 2001 From: cbonar Date: Mon, 30 Jun 2008 22:55:42 +0000 Subject: [PATCH] + copyright notice (let's see the license later) --- ciform/trunk/src/minilib.js | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/ciform/trunk/src/minilib.js b/ciform/trunk/src/minilib.js index 3b51333..85a4833 100644 --- a/ciform/trunk/src/minilib.js +++ b/ciform/trunk/src/minilib.js @@ -1,14 +1,29 @@ +////////////////////////////////////////////////////////////////////////////////// +// +// minilib.js +// +// Copyright © 2008 Nicolas BONARDELLE +// + + + /** @fileoverview This library provides a very minimalistic set of functions to fill some gaps in the core Javascript language.
It should be compatible with most current market's libraries, so that if size would not be a problem it should easily be replaced/enhanced with one of them.
- @author cbonar at users dot sf dot net + @author Nicolas BONARDELLE <http://nicobo.net/contact> */ +// +// ELEMENT SELECTION +// + + + /** @return true if the argument is not undefined nor null @type boolean @@ -36,6 +51,12 @@ function $( fieldName ) +// +// OBJECTS AND COLLECTIONS MANIPULATION +// + + + /** Copies all fields from the given arguments into this object. @@ -111,6 +132,12 @@ Array.prototype.containsValue = function( value, noCase ) +// +// DHTML UTILITIES +// + + + /** Tests the Element to see if it has the passed in className. @see "MooTools" {@link http://docs.mootools.net/Element/Element#Element:hasClass} @@ -148,6 +175,12 @@ HTMLElement.prototype.removeClass = function( className ) +// +// PATCHES, TRICKS +// + + + /** Utility object dedicated to multi-threading, asynchrone calls, ... It should not be used directly.