-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.html
24 lines (19 loc) · 904 Bytes
/
build.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html style="width: 100%; height: 100%">
<head>
<title>LodLive Testing</title>
<link rel="stylesheet" href="dist/ml-lodlive.all.css">
</head>
<body style="width: 100%; height: 100%">
<div id="graph" style="width: 100%; height: 100%"></div>
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<!-- Would like to remove these deps -->
<script src="dist/ml-lodlive.complete.js"></script>
<!-- this is now just a customized options object, might make sense to just pass it in as part of init rather then with the constructor -->
<script src="js/profile/profile.example.js"></script>
<script>
'use strict';
jQuery('#graph').lodlive({ profile: ExampleProfile, firstUri: 'http://dbpedia.org/resource/Will_Smith', ignoreBnodes: true }); // 'http://dbpedia.org/resource/Philadelphia_Flyers'
</script>
</body>
</html>