Changeset 101
- Timestamp:
- 05/02/05 15:57:37 (8 years ago)
- Files:
-
- 1 modified
-
trunk/plugins/ListType/list-type.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/ListType/list-type.js
r60 r101 38 38 a = toolbar[i]; 39 39 for (j = 0; j < a.length; ++j) { 40 if (a[j] == "insert unorderedlist") {40 if (a[j] == "insertorderedlist") { 41 41 found = true; 42 42 break; … … 45 45 } 46 46 if (found) 47 a.splice(j , 0, "space", "ListType", "space");47 a.splice(j+1, 0, "space", "ListType", "space"); 48 48 }; 49 49
