Skip to content

Commit 6964c08

Browse files
committed
Updated documentation, and version
1 parent 902de31 commit 6964c08

File tree

6 files changed

+5
-4
lines changed

6 files changed

+5
-4
lines changed

Examples/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<link href='http://fonts.googleapis.com/css?family=Roboto:300' rel='stylesheet' type='text/css'>
1010
<script src="http://yandex.st/highlightjs/7.3/highlight.min.js"></script>
1111
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
12-
<script src="../jquery-loadTemplate/jquery.loadTemplate-1.4.3.js"></script>
12+
<script src="../jquery-loadTemplate/jquery.loadTemplate-1.4.4.js"></script>
1313
</head>
1414
<body>
1515
<div class="head row">

jquery-loadTemplate/jquery.loadTemplate-1.4.3.min.js renamed to jquery-loadTemplate/jquery.loadTemplate-1.4.4.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

loadTemplate.jquery.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"templates",
77
"templating"
88
],
9-
"version": "1.4.3",
9+
"version": "1.4.4",
1010
"author": {
1111
"name": "Paul Burgess and other contributors",
1212
"url": "https://github.com/codepb/jquery-template"

readme.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ There are a number of different bindings and ways to bind the data. The followin
9999
- "data-content-append" - appends the value to the end of the element (uses $(elem).append(value))
100100
- "data-content-prepend" - prepends the value to the beginning of the element (uses $(elem).prepend(value))
101101
- "data-id" - sets the id of the element to the value provided (uses $(elem).attr("id", value));
102+
- "data-href" - sets the href value of the element to the value provided (uses $(elem).attr("href", value));
102103
- "data-alt" - sets the alt value of the element to the value provided (uses $(elem).attr("alt", value));
103104
- "data-value" - sets the value attribute of the element to the value provided (uses $(elem).val(value))
104105
- "data-link" - sets the innerHtml of the element to be a link to the value provided (wraps the content in an &lt;a&gt; tag).

tests/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<title>loadTemplate Test Suite</title>
55
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" type="text/javascript"></script>
6-
<script src="../jquery-loadTemplate/jquery.loadTemplate-1.4.3.js" type="text/javascript"></script>
6+
<script src="../jquery-loadTemplate/jquery.loadTemplate-1.4.4.js" type="text/javascript"></script>
77
<script src="testRunner.js" type="text/javascript"></script>
88

99
<!--TEST SCRIPTS-->

0 commit comments

Comments
 (0)