##// END OF EJS Templates
remove trailing white-spaces from public/javascripts/select_list_move.js...
Toshi MARUYAMA -
r8983:2f1d6cd94d2a
parent child
Show More
@@ -19,7 +19,7 function swapOptions(theSel, index1, index2)
19 19 }
20 20
21 21 function deleteOption(theSel, theIndex)
22 {
22 {
23 23 var selLength = theSel.length;
24 24 if(selLength>0)
25 25 {
@@ -29,14 +29,14 function deleteOption(theSel, theIndex)
29 29
30 30 function moveOptions(theSelFrom, theSelTo)
31 31 {
32
32
33 33 var selLength = theSelFrom.length;
34 34 var selectedText = new Array();
35 35 var selectedValues = new Array();
36 36 var selectedCount = 0;
37
37
38 38 var i;
39
39
40 40 for(i=selLength-1; i>=0; i--)
41 41 {
42 42 if(theSelFrom.options[i].selected)
@@ -47,12 +47,12 function moveOptions(theSelFrom, theSelTo)
47 47 selectedCount++;
48 48 }
49 49 }
50
50
51 51 for(i=selectedCount-1; i>=0; i--)
52 52 {
53 53 addOption(theSelTo, selectedText[i], selectedValues[i]);
54 54 }
55
55
56 56 if(NS4) history.go(0);
57 57 }
58 58
General Comments 0
You need to be logged in to leave comments. Login now