13 lines
152 B
JavaScript
Executable file
13 lines
152 B
JavaScript
Executable file
$(document).ready(function () {
|
|
//other things to do on document ready, separated for ajax calls
|
|
docReady();
|
|
});
|
|
|
|
|
|
function docReady() {
|
|
|
|
}
|
|
|
|
|
|
|
|
|