mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2025-05-02 22:45:10 -04:00
refactoring logic, to make intention more clear and reduce complexity
This commit is contained in:
parent
b912c07cd1
commit
ad096b80a1
3 changed files with 17 additions and 17 deletions
|
@ -2145,6 +2145,18 @@ jQuery.PrivateBin = (function($, RawDeflate) {
|
|||
return isPreview;
|
||||
};
|
||||
|
||||
/**
|
||||
* gets the visibility of the editor
|
||||
*
|
||||
* @name Editor.isHidden
|
||||
* @function
|
||||
* @return {bool}
|
||||
*/
|
||||
me.isHidden = function()
|
||||
{
|
||||
return $message.hasClass('hidden');
|
||||
};
|
||||
|
||||
/**
|
||||
* reset the Editor view
|
||||
*
|
||||
|
@ -2221,18 +2233,6 @@ jQuery.PrivateBin = (function($, RawDeflate) {
|
|||
return $message.val();
|
||||
};
|
||||
|
||||
/**
|
||||
* returns if status is editing
|
||||
*
|
||||
* @name Editor.isEditing
|
||||
* @function
|
||||
* @return {bool}
|
||||
*/
|
||||
me.isEditing = function()
|
||||
{
|
||||
return !$message.hasClass('hidden');
|
||||
};
|
||||
|
||||
/**
|
||||
* init status manager
|
||||
*
|
||||
|
@ -2855,7 +2855,7 @@ jQuery.PrivateBin = (function($, RawDeflate) {
|
|||
evt.stopPropagation();
|
||||
evt.preventDefault();
|
||||
|
||||
if (!Editor.isEditing()) {
|
||||
if (Editor.isHidden()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -2873,7 +2873,7 @@ jQuery.PrivateBin = (function($, RawDeflate) {
|
|||
|
||||
$(document).draghover().on({
|
||||
'draghoverstart': function(e) {
|
||||
if (!Editor.isEditing()) {
|
||||
if (Editor.isHidden()) {
|
||||
e.stopPropagation();
|
||||
e.preventDefault();
|
||||
return false;
|
||||
|
@ -2903,7 +2903,7 @@ jQuery.PrivateBin = (function($, RawDeflate) {
|
|||
*/
|
||||
function addClipboardEventHandler() {
|
||||
$(document).on('paste', function (event) {
|
||||
if (!Editor.isEditing()) {
|
||||
if (Editor.isHidden()) {
|
||||
event.stopPropagation();
|
||||
event.preventDefault();
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue