Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Oficial bower Register #190

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 22 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
# jQuery Templates plugin vBeta1.0.0
# jQuery Templates plugin
===========

_jQuery Templates is no longer in active development, and will be superseded by <a href="http://github.com/borismoore/jsrender">JsRender</a>. See vBeta1.0.0 tag for released beta version. Requires jQuery version 1.4.2._


<p>
<a href="https://gitter.im/miamarti/jquery-tmpl?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge" target="_blank"><img src="https://badges.gitter.im/Join%20Chat.svg"></a>
<a href="http://waffle.io/miamarti/jquery-tmpl"><img alt='Stories in Ready' src='https://badge.waffle.io/miamarti/jquery-tmpl.svg?label=ready&title=Ready' height="21" /></a>
</p>


----

_Note: This is the original official jQuery Templates plugin. The project was maintained by the jQuery team as an official jQuery plugin. Since the jQuery team has decided not to take this plugin past beta, it has been returned to the principal developer's GitHub account (Boris Moore). For more information on the history of jQuery Templates, and the roadmap going forward, see <a href="http://www.borismoore.com/2011/10/jquery-templates-and-jsviews-roadmap.html">jQuery Templates and JsViews: The Roadmap</a>_
Expand Down Expand Up @@ -47,6 +55,13 @@ This documentation topic concerns the *jQuery Templates* plugin (jquery-tmpl), w

The `jQuery.tmpl()` method is designed for chaining with `.appendTo`, `.prependTo`, `.insertAfter` or `.insertBefore` as in the following example.


### Bower install de dependency
```
$ bower install jquery.tmpl --save
```


### Example:
```JavaScript
$.tmpl( "<li>${Name}</li>", { "Name" : "John Doe" }).appendTo( "#target" );
Expand Down Expand Up @@ -229,3 +244,9 @@ Each template item (the result of rendering a data item with the template) is as
</body>
</html>
```



## Metrics

[![Throughput Graph](https://graphs.waffle.io/miamarti/jquery-tmpl/throughput.svg)](https://waffle.io/miamarti/jquery-tmpl/metrics/throughput)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
46 changes: 46 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"name": "jquery-tmpl",
"description": "jQuery Templates plugin",
"version": "1.1.0",
"keywords": [
"jquery",
"templates",
"plugin"
],
"homepage": "",
"main": "dist/jquery.tmpl.min.js",
"ignore": [
"/.*",
"**/.*",
"build",
"speed",
"test",
"*.md"
],
"authors": [
{
"name": "Boris Moore",
"email": "[email protected]",
"homepage": "http://www.jsviews.com/"
}, {
"name": "Richard D. Worth",
"email": "[email protected]",
"homepage": ""
}, {
"name": "Scott González",
"email": "[email protected]",
"homepage": "http://nemikor.com/"
}, {
"name": "John Resig",
"email": "[email protected]",
"homepage": "http://ejohn.org/"
}, {
"name": "Miller Augusto S. Martins",
"email": "[email protected]",
"homepage": "http://br.linkedin.com/pub/miller-augusto/2a/38b/832/"
}
],
"dependencies": {
"jquery": ">= 1.9.1"
}
}
File renamed without changes.
File renamed without changes.