File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
app/code/Magento/GroupedProduct/view/adminhtml/web/js Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ define([
128
128
* Event handler for "Send to bottom" button
129
129
*
130
130
* @param {Object } positionObj
131
- * @return {boolean }
131
+ * @return {Boolean }
132
132
*/
133
133
sendToBottom : function ( positionObj ) {
134
134
@@ -152,7 +152,7 @@ define([
152
152
* Event handler for "Send to top" button
153
153
*
154
154
* @param {Object } positionObj
155
- * @returns { boolean }
155
+ * @return { Boolean }
156
156
*/
157
157
sendToTop : function ( positionObj ) {
158
158
var objectToUpdate = this . getObjectToUpdate ( positionObj ) ,
@@ -189,7 +189,7 @@ define([
189
189
* Value function for position input
190
190
*
191
191
* @param {Object } data
192
- * @return {number }
192
+ * @return {Number }
193
193
*/
194
194
getCalculatedPosition : function ( data ) {
195
195
return ( ~ ~ this . currentPage ( ) - 1 ) * this . pageSize + this . elems ( ) . pluck ( "name" ) . indexOf ( data . name ) ;
@@ -198,7 +198,7 @@ define([
198
198
/**
199
199
* Return Page Boundary
200
200
*
201
- * @return {number }
201
+ * @return {Number }
202
202
*/
203
203
getDefaultPageBoundary : function ( ) {
204
204
return ~ ~ this . currentPage ( ) * this . pageSize - 1 ;
@@ -207,7 +207,7 @@ define([
207
207
/**
208
208
* Returns position for last element to be moved after
209
209
*
210
- * @return {number }
210
+ * @return {Number }
211
211
*/
212
212
getGlobalMaxPosition : function ( ) {
213
213
return _ . max ( this . recordData ( ) . map ( function ( r ) {
You can’t perform that action at this time.
0 commit comments