remove local urls from test

This commit is contained in:
Benjamin Dauvergne 2012-07-11 15:11:29 +02:00
parent 645279036d
commit 5c9354ed56
1 changed files with 2 additions and 2 deletions

View File

@ -9,11 +9,11 @@
<body>
<script>
function query() {
$.disco_query("coucou", "http://localhost/~bdauvergne/discostore/store.html", "http://localhost/~bdauvergne/discostore/response.html", function (entity_id, auth) {
$.disco_query("coucou", "./store.html", "./response.html", function (entity_id, auth) {
alert("idp is " + entity_id); });
}
function set() {
$.disco_set("coucou", $('#idp').val(), "http://localhost/~bdauvergne/discostore/store.html", "http://localhost/~bdauvergne/discostore/response.html", function (entity_id, auth) {
$.disco_set("coucou", $('#idp').val(), "./store.html", "./response.html", function (entity_id, auth) {
alert("idp has been set to " + entity_id); });
}
</script>