Skip to content

Commit 0b5b12c

Browse files
committed
Fixed issue #25
1 parent 9ede612 commit 0b5b12c

11 files changed

+13
-8
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 1.1.1
4+
5+
### Bug Fixes
6+
- Fixed issue [#25](http://github.com/rstaib/jquery-bootgrid/issues/25)
7+
38
## 1.1.0
49

510
### Enhancements & Features

bootgrid.jquery.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"accessibility",
1515
"bootstrap"
1616
],
17-
"version": "1.1.0",
17+
"version": "1.1.1",
1818
"author": {
1919
"name": "Rafael Staib",
2020
"email": "me@rafaelstaib.com",

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"accessibility",
1414
"bootstrap"
1515
],
16-
"version": "1.1.0",
16+
"version": "1.1.1",
1717
"authors": [
1818
{ "name": "Rafael Staib", "email": "me@rafaelstaib.com", "url": "http://www.rafaelstaib.com" }
1919
],

build/jQuery.Bootgrid.1.1.0.nupkg

-22.5 KB
Binary file not shown.

build/jQuery.Bootgrid.1.1.1.nupkg

22.6 KB
Binary file not shown.

build/jquery.bootgrid-1.1.0.zip

-24.1 KB
Binary file not shown.

build/jquery.bootgrid-1.1.1.zip

24.2 KB
Binary file not shown.

build/jquery.bootgrid.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery Bootgrid v1.1.0 - 09/12/2014
2+
* jQuery Bootgrid v1.1.1 - 09/24/2014
33
* Copyright (c) 2014 Rafael Staib (http://www.jquery-bootgrid.com)
44
* Licensed under MIT http://www.opensource.org/licenses/MIT
55
*/
@@ -1617,7 +1617,7 @@
16171617
}
16181618
key = (prefixes) ? prefixes.join(".") + "." + key : key;
16191619
var pattern = new RegExp("\\{\\{" + key + "\\}\\}", "gm");
1620-
result = result.replace(pattern, value);
1620+
result = result.replace(pattern, (value.replace) ? value.replace(/\$/gi, "$") : value);
16211621
}
16221622
}
16231623
});

build/jquery.bootgrid.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "jquery-bootgrid",
33
"namespace": "jquery.bootgrid",
44
"title": "jQuery Bootgrid",
5-
"version": "1.1.0",
5+
"version": "1.1.1",
66
"description": "Nice, sleek and intuitive. A grid control especially designed for bootstrap.",
77
"homepage": "http://www.jquery-bootgrid.com",
88
"author": {

src/extensions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ if (!String.prototype.resolve)
8787
}
8888
key = (prefixes) ? prefixes.join(".") + "." + key : key;
8989
var pattern = new RegExp("\\{\\{" + key + "\\}\\}", "gm");
90-
result = result.replace(pattern, value);
90+
result = result.replace(pattern, (value.replace) ? value.replace(/\$/gi, "$") : value);
9191
}
9292
}
9393
});

0 commit comments

Comments
 (0)