small fix for reducing js files.

This commit is contained in:
Naomi 2011-02-03 11:51:26 -05:00
parent 65cc694a90
commit 01c1651232
1 changed files with 6 additions and 3 deletions

View File

@ -377,7 +377,7 @@ function openDiffSPL(json) {
setUpSPL();
}
$(document).ready(function() {
function setUpSPL() {
$("#spl_sortable").sortable();
$("#spl_sortable" ).bind( "sortstop", moveSPLItem);
@ -400,5 +400,8 @@ $(document).ready(function() {
$("#spl_sortable").droppable();
$("#spl_sortable" ).bind( "drop", addSPLItem);
}
$(document).ready(function() {
setUpSPL();
});