Skip to content

Commit

Permalink
dumy test
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesjara committed Jan 30, 2017
1 parent 10598dd commit 89a5915
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions dummy/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>
<body>


<script>

var ips = [{
"ip": "ip1"
},{
"ip": "ip2"
}];


initPlugin(ips);

function initPlugin(data){

data.forEach(function(item, index, array) {
document.write(item['ip']);
});


}

</script>

</body>
</html>

0 comments on commit 89a5915

Please sign in to comment.