@@ -57,8 +57,8 @@ define([
57
57
/**
58
58
* Update position for element after position from another page is entered
59
59
*
60
- * @param data
61
- * @param event
60
+ * @param { Object } data
61
+ * @param { Object } event
62
62
*/
63
63
updateGridPosition : function ( data , event ) {
64
64
var inputValue = parseInt ( event . target . value , 10 ) ,
@@ -102,8 +102,8 @@ define([
102
102
/**
103
103
* Get updated record index
104
104
*
105
- * @param recordData
106
- * @param recordId
105
+ * @param { Array } recordData
106
+ * @param { Number } recordId
107
107
* @return {number }
108
108
*/
109
109
getUpdatedRecordIndex : function ( recordData , recordId ) {
@@ -114,7 +114,7 @@ define([
114
114
115
115
/**
116
116
*
117
- * @param recordData to reprocess
117
+ * @param { Array } recordData to reprocess
118
118
*/
119
119
reloadGridData : function ( recordData ) {
120
120
this . recordData ( recordData . sort ( function ( a , b ) {
@@ -127,7 +127,7 @@ define([
127
127
/**
128
128
* Event handler for "Send to bottom" button
129
129
*
130
- * @param positionObj
130
+ * @param { Object } positionObj
131
131
* @return {boolean }
132
132
*/
133
133
sendToBottom : function ( positionObj ) {
@@ -151,7 +151,7 @@ define([
151
151
/**
152
152
* Event handler for "Send to top" button
153
153
*
154
- * @param positionObj
154
+ * @param { Object } positionObj
155
155
* @returns {boolean }
156
156
*/
157
157
sendToTop : function ( positionObj ) {
@@ -176,7 +176,7 @@ define([
176
176
/**
177
177
* Get element from grid for update
178
178
*
179
- * @param object
179
+ * @param { Object } object
180
180
* @return {* }
181
181
*/
182
182
getObjectToUpdate : function ( object ) {
@@ -188,7 +188,7 @@ define([
188
188
/**
189
189
* Value function for position input
190
190
*
191
- * @param data
191
+ * @param { Object } data
192
192
* @return {number }
193
193
*/
194
194
getCalculatedPosition : function ( data ) {
0 commit comments