-
Notifications
You must be signed in to change notification settings - Fork 0
/
m5sblock.html
40 lines (33 loc) · 876 Bytes
/
m5sblock.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!doctype html>
<html>
<head>
<title>M5S Block</title>
<!--
- JavaScript and HTML must be in separate files: see our Content Security
- Policy documentation[1] for details and explanation.
-
- [1]: http://developer.chrome.com/extensions/contentSecurityPolicy.html
-->
<script src="wikiquote-api.js" type="text/javascript"></script>
</head>
<body>
<script type="text/javascript">
//function randomQuote() {
// function successo(results) {
// console.log(''+results.quote+'<br>');
// console.log('('+results.titles+')');
// $('body').html(''+results.quote+'<br>'+results.titles)
//
// //console.log(results.titles)
// }
// function errore(errore) {
// console.error('Errore: '+errore);
// }
// WikiquoteApi.getRandomQuote('gramsci', successo, errore );
//}
//
//
//randomQuote()
</script>
</body>
</html>