2013-09-30 11:41:18 -04:00
|
|
|
|
(function ($, document) {
|
|
|
|
|
|
2015-09-01 10:01:59 -04:00
|
|
|
|
$(document).on('pageinit', "#wizardServicePage", function () {
|
2013-09-30 11:41:18 -04:00
|
|
|
|
|
|
|
|
|
var page = this;
|
|
|
|
|
|
|
|
|
|
$('#btnNextPage', page).on('click', function () {
|
|
|
|
|
|
2015-01-05 22:25:23 -05:00
|
|
|
|
Dashboard.navigate('wizardagreement.html');
|
2013-09-30 11:41:18 -04:00
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
})(jQuery, document, window);
|