10 lines
203 B
JavaScript
10 lines
203 B
JavaScript
(function($, window, document) {
|
|
$(function(){
|
|
var Bank = {}
|
|
$('#account-modal').hide()
|
|
// your code here
|
|
});
|
|
}(window.jQuery, window, document));
|
|
|
|
// your code from bank accounts 1 here
|