~ubuntu-branches/debian/sid/wordpress/sid

« back to all changes in this revision

Viewing changes to wp-includes/js/comment-reply.js

  • Committer: Package Import Robot
  • Author(s): Craig Small
  • Date: 2014-01-24 22:20:08 UTC
  • mfrom: (1.2.31)
  • Revision ID: package-import@ubuntu.com-20140124222008-wgyk0hvmhjkubf9i
Tags: 3.8.1+dfsg-1
* New upstream release.
* Depend on either mysql or mariadb client Closes: #732914

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
addComment = {
 
1
var addComment = {
3
2
        moveForm : function(commId, parentId, respondId, postId) {
4
3
                var t = this, div, comm = t.I(commId), respond = t.I(respondId), cancel = t.I('cancel-comment-reply-link'), parent = t.I('comment_parent'), post = t.I('comment_post_ID');
5
4
 
34
33
                        this.style.display = 'none';
35
34
                        this.onclick = null;
36
35
                        return false;
37
 
                }
 
36
                };
38
37
 
39
38
                try { t.I('comment').focus(); }
40
39
                catch(e) {}
45
44
        I : function(e) {
46
45
                return document.getElementById(e);
47
46
        }
48
 
}
 
47
};