提交 05c4ad7e 编写于 作者: K kohsuke

fixed a typo.


git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@5529 71c3de6d-444a-0410-be80-ed276b4c234a
上级 0bd82cb3
......@@ -256,20 +256,20 @@ var hudsonRules = {
while (!Element.hasClassName(ip, "repeatable-insertion-point"))
ip = ip.previousSibling;
// set up the logic
object(repetableSupport).init(e, e.firstChild, ip);
object(repeatableSupport).init(e, e.firstChild, ip);
},
// button to add a new repeatable block
"INPUT.repeatable-add" : function(e) {
makeButton(e,function(e) {
repetableSupport.onAdd(e.target);
repeatableSupport.onAdd(e.target);
});
e = null; // avoid memory leak
},
"INPUT.repeatable-delete" : function(e) {
makeButton(e,function(e) {
repetableSupport.onDelete(e.target);
repeatableSupport.onDelete(e.target);
});
e = null; // avoid memory leak
},
......@@ -649,7 +649,7 @@ function updateDropDownList(sel) {
// code for supporting repeatable.jelly
var repetableSupport = {
var repeatableSupport = {
// set by the inherited instance to the insertion point DIV
insertionPoint: null,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册