var App = window.App || {};

$(document).ready(function() {
  App.Editor.init();
});

// comment reply
function onclickAddComment(commentId) {
	App.Editor.commentReply(commentId);
}

/* Editor */
App.Editor = function() {
  
  return {
    init : function() {
	  
  	},
  	// init

  	commentReply : function(commentId) {
		$('#re').val(commentId);
		$('#comments-form-name').text('Vložit odpověď na komentář');
		location.href = '#add-comment';
		return false;
  	}
  } 
  
}();
