We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9391cb7 commit 766b708Copy full SHA for 766b708
website/www/index.txt
@@ -7,13 +7,13 @@ Roundup Issue Tracker
7
8
.. raw:: html
9
10
- <span id="release_info">release info</span>
+ <span id="release_info">Version: [unknown]</span>
11
12
13
14
<script type="text/javascript">
15
- $.getJSON('http://pypi.python.org/pypi/roundup/json', function(data) {
16
- $('#release_info').html('<p>Version: ' + data.version + '</p>');
+ $.getJSON('http://pypi.python.org/pypi/roundup/json?callback=?', function(data) {
+ $('#release_info').html('Version: ' + data.version);
17
});
18
</script>
19
0 commit comments