Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
mharthoorn committed Feb 24, 2016
1 parent 60720d9 commit 5b55489
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docs_simplifier/simplifierWriteConnector.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@ There are several things that you will likely do when you write a connector scri
If you wish to fetch data from a server

.. code-block:: Javascript
$.get(url).succes(function()
{
$.get(url).succes(function()
{
});
});

$.post(url, body).succes(function()
{

});
$.post(url, body).succes(function()
{
});
To redirect to a different page, with a POST body payload:

.. code-block:: Javascript
$.redirect(url, body);
$.redirect(url, body);
Place holders
-------------
Expand Down

0 comments on commit 5b55489

Please sign in to comment.