Skip to content
This repository was archived by the owner on Jul 29, 2019. It is now read-only.

Commit 22a4bab

Browse files
committed
Reformat code
1 parent 5c3f55c commit 22a4bab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/js/bundles/dn_introjs/intro.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -865,7 +865,7 @@
865865

866866
if (i === (targetElement.step-1)) anchorLink.className = 'active';
867867

868-
anchorLink.href = 'javascript:void(0);';
868+
//anchorLink.href = 'javascript:void(0);';
869869
anchorLink.innerHTML = " ";
870870
anchorLink.setAttribute('data-stepnumber', this._introItems[i].step);
871871

@@ -916,7 +916,7 @@
916916
}
917917
};
918918

919-
nextTooltipButton.href = 'javascript:void(0);';
919+
//nextTooltipButton.href = 'javascript:void(0);';
920920
nextTooltipButton.innerHTML = this._options.nextLabel;
921921

922922
//previous button
@@ -928,13 +928,13 @@
928928
}
929929
};
930930

931-
prevTooltipButton.href = 'javascript:void(0);';
931+
//prevTooltipButton.href = 'javascript:void(0);';
932932
prevTooltipButton.innerHTML = this._options.prevLabel;
933933

934934
//skip button
935935
var skipTooltipButton = document.createElement('a');
936936
skipTooltipButton.className = 'introjs-button introjs-skipbutton';
937-
skipTooltipButton.href = 'javascript:void(0);';
937+
//skipTooltipButton.href = 'javascript:void(0);';
938938
skipTooltipButton.innerHTML = this._options.skipLabel;
939939

940940
skipTooltipButton.onclick = function() {

0 commit comments

Comments
 (0)