You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
582 B
17 lines
582 B
$(function () { |
|
|
|
var anchors = ['top-left', 'top-middle', 'top-right', 'middle-left', 'middle-middle', 'middle-right', 'bottom-left', 'bottom-middle', 'bottom-right']; |
|
|
|
for (var i=0, l=anchors.length; i<l; i++) { |
|
guidely.add ({ |
|
attachTo: '#demo' |
|
, title: 'Title' |
|
, text: 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolo.' |
|
, anchor: anchors[i] |
|
}); |
|
} |
|
|
|
guidely.init ({ showOnStart: true, welcome: false, overlay: true, startTrigger: true }); |
|
//guidely.hideGuides (); |
|
//guidely.hideOverlay (); |
|
}); |