Move js to correct place
This commit is contained in:
parent
081f81c41c
commit
38109e175a
2 changed files with 9 additions and 11 deletions
|
@ -15,14 +15,4 @@ $( document ).ready(function() {
|
|||
$('html,body').scrollTop(scrollmem);
|
||||
});
|
||||
|
||||
|
||||
// Toggle subscription and one-time payments div
|
||||
$('#li-one-time-charges').click(function() {
|
||||
console.log("li-one-time-charges clicked");
|
||||
});
|
||||
$('#li-subscriptions').click(function() {
|
||||
console.log("li-one-time-charges clicked");
|
||||
});
|
||||
|
||||
|
||||
});
|
|
@ -135,7 +135,15 @@ $(document).ready(function() {
|
|||
});
|
||||
$('#createvm-modal').on('hidden.bs.modal', function () {
|
||||
$(this).find('.modal-footer .btn').addClass('hide');
|
||||
})
|
||||
});
|
||||
|
||||
// Toggle subscription and one-time payments div
|
||||
$('#li-one-time-charges').click(function() {
|
||||
console.log("li-one-time-charges clicked");
|
||||
});
|
||||
$('#li-subscriptions').click(function() {
|
||||
console.log("li-one-time-charges clicked");
|
||||
});
|
||||
});
|
||||
|
||||
window.onload = function () {
|
||||
|
|
Loading…
Reference in a new issue