mirror of https://github.com/gophish/gophish
13 lines
269 B
JavaScript
13 lines
269 B
JavaScript
|
$(document).ready(function(){
|
||
|
campaigns.get()
|
||
|
.success(function(data){
|
||
|
successFlash("worked!")
|
||
|
console.log(data)
|
||
|
})
|
||
|
.error(function(data){
|
||
|
errorFlash("No work")
|
||
|
console.log(data)
|
||
|
})
|
||
|
$("#table_id").DataTable();
|
||
|
})
|