Skip to content
This repository has been archived by the owner on Mar 15, 2018. It is now read-only.

Commit

Permalink
changed the description
Browse files Browse the repository at this point in the history
  • Loading branch information
tarekziade committed Feb 7, 2013
1 parent d3ba5d3 commit 3c9192d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.rst
@@ -1,4 +1,4 @@
Documentation
=============
Monolith
=========

Put a brief description of 'monolith'.
Monolith provides a set of APIs to build time series charts.
8 changes: 7 additions & 1 deletion monolith/media/lib/monolith.js
Expand Up @@ -113,7 +113,13 @@ $.Class.extend("MonolithBase", {},
$.ajax({url: this.server,
type: 'GET',
async: false,
success: function(result) { info = result; }
success: function(result) { info = result; },
error: function (xhr, textStatus, errorThrown) {
alert("error " + textStatus + " " + xhr.responseText);
},
failure: function(errMsg) {
alert("failure " + errMsg);
}
});
return info;
},
Expand Down

0 comments on commit 3c9192d

Please sign in to comment.