public
Description: Speed / Validity test for css dom queries in JavaScript web Frameworks.
Homepage: http://github.com/kamicane/slickspeed
Clone URL: git://github.com/kamicane/slickspeed.git
slickspeed / config.ini
100755 25 lines (18 sloc) 0.52 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
; [MooTools]
; file = "mootools.js"
; function = "$$"
 
; [Prototype]
; file = "prototype.js"
; function = "$$"
 
; [Dojo]
; file = "dojo.js"
; function = "dojo.query"
 
; [jQuery]
; file = "jquery.js"
; function = "jQuery"
 
 
; just add a framework here following the conventions to add another framework.
; the function parameter is to choose the right css selector function name
; the include parameter is to include the right javascript file
 
; [myframework]
; file = "myFramework.js"
; function = "getElements"