2016-03-19 05:26:17 +01:00
|
|
|
|
define(['jQuery'], function ($) {
|
2013-09-30 11:41:18 -04:00
|
|
|
|
|
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
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2016-03-19 05:26:17 +01:00
|
|
|
|
});
|