Skip to content

Commit 49028d1

Browse files
authored
Consistency with display_name
1 parent a04b222 commit 49028d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

topics/backbonejs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ url: https://backbonejs.org/
1010
wikipedia_url: https://en.wikipedia.org/wiki/Backbone.js
1111
related: javascript, mvc, underscore, routing, jquery
1212
---
13-
**Backbone** supplies structure to JavaScript-heavy applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing application over a RESTful JSON interface. Backbone.js was originally extracted from the Rails application [DocumentCloud](http://www.documentcloud.org/). Philosophically, Backbone is an attempt to discover the minimal set of data-structuring (models and collections) and user interface (views and URLs) primitives that are generally useful when building web applications with JavaScript. Backbone is a library, not a framework. Synchronous events are used as the fundamental building block over constantly polling data. The main pars of Backbone are:
13+
**Backbone.js** supplies structure to JavaScript-heavy applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing application over a RESTful JSON interface. Backbone.js was originally extracted from the Rails application [DocumentCloud](http://www.documentcloud.org/). Philosophically, Backbone is an attempt to discover the minimal set of data-structuring (models and collections) and user interface (views and URLs) primitives that are generally useful when building web applications with JavaScript. Backbone is a library, not a framework. Synchronous events are used as the fundamental building block over constantly polling data. The main pars of Backbone are:
1414
* Events
1515
* Models – Wraps a row of data in business logic.
1616
* Collections – A group of models on the client-side, with sorting/filtering/aggregation logic.

0 commit comments

Comments
 (0)