Skip to content

Commit 11bfe15

Browse files
author
Rafael J. Staib
committed
Add some comment changes
1 parent a6d95c8 commit 11bfe15

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

jquery.steps.js

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
html: 0,
100100

101101
/**
102-
* IFrame included content
102+
* IFrame embedded content
103103
*
104104
* @readOnly
105105
* @property iframe
@@ -272,7 +272,7 @@
272272
loadingTemplate: "<span class=\"spinner\"></span> #text#",
273273

274274
/*
275-
* Behaviours
275+
* Behaviour
276276
*/
277277

278278
/**
@@ -356,8 +356,8 @@
356356
preloadContent: false,
357357

358358
/**
359-
* Shows the finish always (on each step; right beside the next button) if `true`.
360-
* Otherwise the next button will be replaced by the finish on the last step.
359+
* Shows the finish button always (on each step; right beside the next button) if `true`.
360+
* Otherwise the next button will be replaced by the finish button if the last step becomes active.
361361
*
362362
* @property showFinishButtonAlways
363363
* @type Boolean
@@ -367,7 +367,7 @@
367367
showFinishButtonAlways: false,
368368

369369
/**
370-
* Forces forward navigation (move backward is not possible).
370+
* Prevents jumping to a previous step.
371371
*
372372
* @property forceMoveForward
373373
* @type Boolean
@@ -398,7 +398,7 @@
398398
startIndex: 0,
399399

400400
/*
401-
* Animation Effect Settings
401+
* Animation Effect Configuration
402402
*/
403403

404404
/**
@@ -422,7 +422,7 @@
422422
transitionEffectSpeed: 200,
423423

424424
/*
425-
* Event Handlers
425+
* Events
426426
*/
427427

428428
/**
@@ -458,7 +458,7 @@
458458
onFinishing: function (event, currentIndex) { return true; },
459459

460460
/**
461-
* Fires after the completion.
461+
* Fires after completion.
462462
*
463463
* @property onFinished
464464
* @type Event
@@ -548,7 +548,7 @@
548548
* Gets the current step object.
549549
*
550550
* @method getCurrentStep
551-
* @return {Integer} The actual step object
551+
* @return {Object} The actual step object
552552
**/
553553
$.fn.steps.getCurrentStep = function ()
554554
{
@@ -560,7 +560,7 @@
560560
*
561561
* @method getStep
562562
* @param index {Integer} An integer that belongs to the position of a step
563-
* @return {Integer} A specific step object
563+
* @return {Object} A specific step object
564564
**/
565565
$.fn.steps.getStep = function (index)
566566
{
@@ -609,7 +609,7 @@
609609
};
610610

611611
/**
612-
* Completes editing.
612+
* Triggers the onFinishing and onFinished event.
613613
*
614614
* @method finish
615615
**/

0 commit comments

Comments
 (0)