jquery.textSelection: Move copyright comments to the top of the file
authorBartosz Dziewoński <matma.rex@gmail.com>
Mon, 5 Feb 2018 13:21:36 +0000 (14:21 +0100)
committerJforrester <jforrester@wikimedia.org>
Tue, 6 Feb 2018 19:57:48 +0000 (19:57 +0000)
Functions' doc comments should only document the function.

Change-Id: I56f21b49a35bf191a930d39af2f2020cdeb6ca30

resources/src/jquery/jquery.textSelection.js

index d22fc4b..dc9d4cf 100644 (file)
@@ -1,5 +1,11 @@
 /**
  * These plugins provide extra functionality for interaction with textareas.
+ *
+ * - encapsulateSelection: Ported from skins/common/edit.js by Trevor Parscal
+ *   © 2009 Wikimedia Foundation (GPLv2) - http://www.wikimedia.org
+ * - getCaretPosition, scrollToCaretPosition: Ported from Wikia's LinkSuggest extension
+ *   https://github.com/Wikia/app/blob/c0cd8b763/extensions/wikia/LinkSuggest/js/jquery.wikia.linksuggest.js
+ *   © 2010 Inez Korczyński (korczynski@gmail.com) & Jesús Martínez Novo (martineznovo@gmail.com) (GPLv2)
  */
 ( function ( $ ) {
        $.fn.textSelection = function ( command, options ) {
@@ -42,9 +48,6 @@
                                return retval;
                        },
                        /**
-                        * Ported from skins/common/edit.js by Trevor Parscal
-                        * (c) 2009 Wikimedia Foundation (GPLv2) - http://www.wikimedia.org
-                        *
                         * Inserts text at the beginning and end of a text selection, optionally
                         * inserting text at the caret when selection is empty.
                         *
                                } );
                        },
                        /**
-                        * Ported from Wikia's LinkSuggest extension
-                        * https://svn.wikia-code.com/wikia/trunk/extensions/wikia/LinkSuggest
-                        *
                         * Get the position (in resolution of bytes not necessarily characters)
                         * in a textarea
                         *
                                } );
                        },
                        /**
-                        * Ported from Wikia's LinkSuggest extension
-                        * https://svn.wikia-code.com/wikia/trunk/extensions/wikia/LinkSuggest
-                        *
                         * Scroll a textarea to the current cursor position. You can set the cursor
                         * position with setSelection()
                         *