Explorar o código

Improve code style of function names

Thx
https://github.com/PrivateBin/PrivateBin/commit/429d43dc78ad5b722d547a4082bc106f702f5d1d#r29068381
rugk %!s(int64=8) %!d(string=hai) anos
pai
achega
733cc70967
Modificáronse 3 ficheiros con 18 adicións e 19 borrados
  1. 16 17
      js/privatebin.js
  2. 1 1
      tpl/bootstrap.php
  3. 1 1
      tpl/page.php

+ 16 - 17
js/privatebin.js

@@ -2135,7 +2135,7 @@ jQuery.PrivateBin = (function($, sjcl, Base64, RawDeflate) {
          * @param {object} loadedFile The loaded file.
          * @param {object} loadedFile The loaded file.
          * @see {@link https://developer.mozilla.org/en-US/docs/Web/API/FileReader#readAsDataURL()}
          * @see {@link https://developer.mozilla.org/en-US/docs/Web/API/FileReader#readAsDataURL()}
          */
          */
-        readFileData = function (loadedFile) {
+        function readFileData(loadedFile) {
             if (typeof FileReader === 'undefined') {
             if (typeof FileReader === 'undefined') {
                 // revert loading status…
                 // revert loading status…
                 me.hideAttachment();
                 me.hideAttachment();
@@ -2165,7 +2165,7 @@ jQuery.PrivateBin = (function($, sjcl, Base64, RawDeflate) {
                 }
                 }
             };
             };
             fileReader.readAsDataURL(loadedFile);
             fileReader.readAsDataURL(loadedFile);
-        };
+        }
 
 
         /**
         /**
          * handle the preview of files that can either be an image, video, audio or pdf element
          * handle the preview of files that can either be an image, video, audio or pdf element
@@ -2246,7 +2246,7 @@ jQuery.PrivateBin = (function($, sjcl, Base64, RawDeflate) {
          * @private
          * @private
          * @function
          * @function
          */
          */
-        addDragDropHandler = function () {
+        function addDragDropHandler() {
             if (typeof $fileInput === 'undefined' || $fileInput.length === 0) {
             if (typeof $fileInput === 'undefined' || $fileInput.length === 0) {
                 return;
                 return;
             }
             }
@@ -2279,7 +2279,7 @@ jQuery.PrivateBin = (function($, sjcl, Base64, RawDeflate) {
             $fileInput.on('change', function () {
             $fileInput.on('change', function () {
                 readFileData();
                 readFileData();
             });
             });
-        };
+        }
 
 
         /**
         /**
          * attaches the clipboard attachment handler to the page
          * attaches the clipboard attachment handler to the page
@@ -2288,20 +2288,19 @@ jQuery.PrivateBin = (function($, sjcl, Base64, RawDeflate) {
          * @private
          * @private
          * @function
          * @function
          */
          */
-        addClipboardEventHandler = function () {
-            $(document).on('paste',
-                    function (event) {
-                        var items = (event.clipboardData || event.originalEvent.clipboardData).items;
-                        for (var i in items) {
-                            if (items.hasOwnProperty(i)) {
-                                var item = items[i];
-                                if (item.kind === 'file') {
-                                    readFileData(item.getAsFile());
-                                }
-                            }
+        function addClipboardEventHandler() {
+            $(document).on('paste', function (event) {
+                var items = (event.clipboardData || event.originalEvent.clipboardData).items;
+                for (var i in items) {
+                    if (items.hasOwnProperty(i)) {
+                        var item = items[i];
+                        if (item.kind === 'file') {
+                            readFileData(item.getAsFile());
                         }
                         }
-                    });
-        };
+                    }
+                }
+            });
+        }
 
 
 
 
         /**
         /**

+ 1 - 1
tpl/bootstrap.php

@@ -75,7 +75,7 @@ if ($MARKDOWN):
 <?php
 <?php
 endif;
 endif;
 ?>
 ?>
-		<script type="text/javascript" src="js/privatebin.js?<?php echo rawurlencode($VERSION); ?>" integrity="sha512-1BUJ1V4Y4Ej0dSOPsQevY2J0GWnjfm++cZwPMvHv8mCkm1il1PppRRVXPhfaIkoPi44Qi1I3CLYssWqHITMOcA==" crossorigin="anonymous"></script>
+		<script type="text/javascript" src="js/privatebin.js?<?php echo rawurlencode($VERSION); ?>" integrity="sha512-lOkttpDmPCMhf4whJoOeRnNj1ZJL4kJOR+9eJpOwPqWKU4AYvN70TaJbm4Jjm9Rh86slQZyXO/t7CQ0G9lxthQ==" crossorigin="anonymous"></script>
 		<!--[if lt IE 10]>
 		<!--[if lt IE 10]>
 		<style type="text/css">body {padding-left:60px;padding-right:60px;} #ienotice {display:block;} #oldienotice {display:block;}</style>
 		<style type="text/css">body {padding-left:60px;padding-right:60px;} #ienotice {display:block;} #oldienotice {display:block;}</style>
 		<![endif]-->
 		<![endif]-->

+ 1 - 1
tpl/page.php

@@ -54,7 +54,7 @@ if ($QRCODE):
 <?php
 <?php
 endif;
 endif;
 ?>
 ?>
-		<script type="text/javascript" src="js/privatebin.js?<?php echo rawurlencode($VERSION); ?>" integrity="sha512-1BUJ1V4Y4Ej0dSOPsQevY2J0GWnjfm++cZwPMvHv8mCkm1il1PppRRVXPhfaIkoPi44Qi1I3CLYssWqHITMOcA==" crossorigin="anonymous"></script>
+		<script type="text/javascript" src="js/privatebin.js?<?php echo rawurlencode($VERSION); ?>" integrity="sha512-lOkttpDmPCMhf4whJoOeRnNj1ZJL4kJOR+9eJpOwPqWKU4AYvN70TaJbm4Jjm9Rh86slQZyXO/t7CQ0G9lxthQ==" crossorigin="anonymous"></script>
 		<!--[if lt IE 10]>
 		<!--[if lt IE 10]>
 		<style type="text/css">body {padding-left:60px;padding-right:60px;} #ienotice {display:block;} #oldienotice {display:block;}</style>
 		<style type="text/css">body {padding-left:60px;padding-right:60px;} #ienotice {display:block;} #oldienotice {display:block;}</style>
 		<![endif]-->
 		<![endif]-->