Files
fuelux/assets/js/wizard-examples.js
Stephen Williams ac6c6fa6d8 replace http references w/ https
(excludes *vendor*,*.yml,*.md)
2020-05-27 15:14:27 -04:00

89 lines
2.7 KiB
JavaScript
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*!
* JavaScript for Fuel UX's docs - Examples
* Copyright 2011-2014 ExactTarget, Inc.
* Licensed under the Creative Commons Attribution 3.0 Unported License. For
* details, see https://creativecommons.org/licenses/by/3.0/.
*/
define(function (require) {
var jquery = require('jquery');
require('bootstrap');
require('fuelux');
// WIZARD
$('#myWizard').on('changed.fu.wizard', function (e, data) {
console.log('changed');
console.log(data);
});
$('#myWizard').on('actionclicked.fu.wizard', function (e, data) {
console.log('action clicked');
console.log(data);
});
$('#myWizard').on('stepclicked.fu.wizard', function (e, data) {
console.log('step ' + data.step + ' clicked');
if (data.step === 1) {
// return e.preventDefault();
}
});
//buttons
$('#myWizard').on('finished', function (e, data) {
console.log('finished');
});
$('#btnWizardPrev').on('click', function () {
$('#myWizard').wizard('previous');
});
$('#btnWizardNext').on('click', function () {
$('#myWizard').wizard('next', 'foo');
});
$('#btnWizardStep').on('click', function () {
var item = $('#myWizard').wizard('selectedItem');
console.log(item.step);
});
$('#btnWizardSetStep').on('click', function () {
$('#myWizard').wizard('selectedItem', {
step: 3
});
});
$('#btnWizardSetStepByName').on('click', function () {
$('#myWizard').wizard('selectedItem', {
step: "template"
});
});
var emailSetupSamplePane = '<div class="bg-warning alert">' +
' <h4>Setup Message</h4>' +
' <p>Soko radicchio bunya nuts gram dulse silver beet parsnip napa cabbage ' +
' lotus root sea lettuce brussels sprout cabbage. Catsear cauliflower garbanzo yarrow ' +
' salsify chicory garlic bell pepper napa cabbage lettuce tomato kale arugula melon ' +
' sierra leone bologi rutabaga tigernut. Sea lettuce gumbo grape kale kombu cauliflower ' +
' salsify kohlrabi okra sea lettuce broccoli celery lotus root carrot winter purslane ' +
' turnip greens garlic. Jícama garlic courgette coriander radicchio plantain scallion ' +
' cauliflower fava bean desert raisin spring onion chicory bunya nuts. Sea lettuce water ' +
' spinach gram fava bean leek dandelion silver beet eggplant bush tomato. </p>' +
'</div>';
$('#btnWizardAddSteps').on('click', function () {
$('#myWizard').wizard('addSteps', 2, [
{
badge: '',
label: 'Setup',
pane: emailSetupSamplePane
}
]);
});
$('#btnWizardRemoveStep').on('click', function () {
$('#myWizard').wizard('removeSteps', 1, 1);
});
$('#btnWizardDestroy').click(function () {
var markup = $('#myWizard').wizard('destroy');
console.log(markup);
$(this).closest('.section').append(markup);
$('#myWizard').wizard();
});
});