Skip to content

Commit

Permalink
more popover-
Browse files Browse the repository at this point in the history
  • Loading branch information
mhevery committed Apr 12, 2012
1 parent 53dc001 commit 4f5d709
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions index.html
Expand Up @@ -719,14 +719,14 @@ <h2>JavaScript Projects</h2>
, "ng-disabled": "The 'Save' button is disabled when the form has not been user edited or is invalid."
}
, "mongolab.js":
{ "'mongolab'": "Define the <code>mongolab</code> module. You use modules to configure existing services, and define new services, directives, filters, and so on. Here, we’ll set up <code>Project</code> class to which abstracts server communication."
, "'ngResource'": "We depend on AngularJS <code>ngResource</code> module which "
, "factory": ""
, "Project": ""
, "$resource": ""
, "apiKey": ""
, "update": ""
, "prototype": ""
{ "'mongolab'": "Define the <code>mongolab</code> module. You use modules to configure existing services, and define new services, directives, filters, and so on. Here, we’ll set up <code>Project</code> class to abstracts server communication."
, "'ngResource'": "We depend on AngularJS <code>ngResource</code> module which provides <code>$resource</code> abstraction."
, "factory": "Use the module's <code>factory</code> method to define new service. Any service defined here can the be injected throughout your application."
, "Project": "Here is a service definition for <code>Parse</code> resource class. The <code>Project</code> class will represent the data associated with each project. The class has methods for retrieving and storing the data."
, "$resource": "A <code>$resource</code> is a service used to create resource classes. The resource class comes preconfigured with <code>query()</code>, <code>get()</code>, <code>save()</code>, and <code>remove()</code>, methods which hide the complexity of server communictaion. In addition the class can be extended with behavior specific to your application."
, "apiKey": "URL query parameter which needs to be sent with all requests to the <code>mongolab</code> data storage."
, "update": "We are defining <code>update()</code> method on the resource. It will use HTTP <code>PUT</code> method for the request."
, "prototype": "We extend the "
}
}
</script>
Expand Down

0 comments on commit 4f5d709

Please sign in to comment.