corrade-http-templates – Blame information for rev 57

Subversion Repositories:
Rev:
Rev Author Line No. Line
57 office 1 ( function() {
2  
3 var versions = [
4 "1.7.0", "1.7.1", "1.7.2",
5 "1.8.0", "1.8.1", "1.8.2", "1.8.3",
6 "1.9.0", "1.9.1",
7 "1.10.0", "1.10.1", "1.10.2",
8 "1.11.0", "1.11.1", "1.11.2", "1.11.3",
9 "1.12.0", "1.12.1", "1.12.2", "1.12.3", "1.12.4",
10 "2.0.0", "2.0.1", "2.0.2", "2.0.3",
11 "2.1.0", "2.1.1", "2.1.2", "2.1.3", "2.1.4",
12 "2.2.0", "2.2.1", "2.2.2", "2.2.3", "2.2.4",
13 "3.0.0",
14 "3.1.0",
15 "git", "custom"
16 ],
17 additionalTests = {
18  
19 // component: [ "other_test.html" ]
20 };
21  
22 window.testAllVersions = function( widget ) {
23 QUnit.testSuites( $.map(
24 [ widget + ".html" ].concat( additionalTests[ widget ] || [] ),
25 function( test ) {
26 return $.map( versions, function( version ) {
27 return test + "?jquery=" + version;
28 } );
29 } ) );
30 };
31  
32 }() );