Skip to content

Commit

Permalink
Fixed issue #25
Browse files Browse the repository at this point in the history
  • Loading branch information
rstaib committed Sep 24, 2014
1 parent 9ede612 commit 0b5b12c
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,10 @@
# Changelog

## 1.1.1

### Bug Fixes
- Fixed issue [#25](http://github.com/rstaib/jquery-bootgrid/issues/25)

## 1.1.0

### Enhancements & Features
Expand Down
2 changes: 1 addition & 1 deletion bootgrid.jquery.json
Expand Up @@ -14,7 +14,7 @@
"accessibility",
"bootstrap"
],
"version": "1.1.0",
"version": "1.1.1",
"author": {
"name": "Rafael Staib",
"email": "me@rafaelstaib.com",
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Expand Up @@ -13,7 +13,7 @@
"accessibility",
"bootstrap"
],
"version": "1.1.0",
"version": "1.1.1",
"authors": [
{ "name": "Rafael Staib", "email": "me@rafaelstaib.com", "url": "http://www.rafaelstaib.com" }
],
Expand Down
Binary file removed build/jQuery.Bootgrid.1.1.0.nupkg
Binary file not shown.
Binary file added build/jQuery.Bootgrid.1.1.1.nupkg
Binary file not shown.
Binary file removed build/jquery.bootgrid-1.1.0.zip
Binary file not shown.
Binary file added build/jquery.bootgrid-1.1.1.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions build/jquery.bootgrid.js
@@ -1,5 +1,5 @@
/*!
* jQuery Bootgrid v1.1.0 - 09/12/2014
* jQuery Bootgrid v1.1.1 - 09/24/2014
* Copyright (c) 2014 Rafael Staib (http://www.jquery-bootgrid.com)
* Licensed under MIT http://www.opensource.org/licenses/MIT
*/
Expand Down Expand Up @@ -1617,7 +1617,7 @@
}
key = (prefixes) ? prefixes.join(".") + "." + key : key;
var pattern = new RegExp("\\{\\{" + key + "\\}\\}", "gm");
result = result.replace(pattern, value);
result = result.replace(pattern, (value.replace) ? value.replace(/\$/gi, "$") : value);
}
}
});
Expand Down
4 changes: 2 additions & 2 deletions build/jquery.bootgrid.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"name": "jquery-bootgrid",
"namespace": "jquery.bootgrid",
"title": "jQuery Bootgrid",
"version": "1.1.0",
"version": "1.1.1",
"description": "Nice, sleek and intuitive. A grid control especially designed for bootstrap.",
"homepage": "http://www.jquery-bootgrid.com",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/extensions.js
Expand Up @@ -87,7 +87,7 @@ if (!String.prototype.resolve)
}
key = (prefixes) ? prefixes.join(".") + "." + key : key;
var pattern = new RegExp("\\{\\{" + key + "\\}\\}", "gm");
result = result.replace(pattern, value);
result = result.replace(pattern, (value.replace) ? value.replace(/\$/gi, "$") : value);
}
}
});
Expand Down

0 comments on commit 0b5b12c

Please sign in to comment.