Skip to content
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
4 changes: 2 additions & 2 deletions build/KoGrid.debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* koGrid JavaScript Library
* Authors: https://github.com/ericmbarnard/koGrid/blob/master/README.md
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
* Compiled At: 01/11/2013 15:58:36
* Compiled At: 02/18/2014 12:09:35
***********************************************/

(function (window) {
Expand Down Expand Up @@ -1661,7 +1661,7 @@ window.kg.Row = function (entity, config, selectionService) {
self.afterSelectionChange = config.afterSelectionChangeCallback;
self.propertyCache = {};
self.getProperty = function (path) {
return self.propertyCache[path] || (self.propertyCache[path] = window.kg.utils.evalProperty(self.entity, path));
return window.kg.utils.evalProperty(self.entity, path);
};
};

Expand Down
4 changes: 2 additions & 2 deletions koGrid-2.1.1.debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* koGrid JavaScript Library
* Authors: https://github.com/ericmbarnard/koGrid/blob/master/README.md
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
* Compiled At: 01/11/2013 15:58:36
* Compiled At: 02/18/2014 12:09:35
***********************************************/

(function (window) {
Expand Down Expand Up @@ -1661,7 +1661,7 @@ window.kg.Row = function (entity, config, selectionService) {
self.afterSelectionChange = config.afterSelectionChangeCallback;
self.propertyCache = {};
self.getProperty = function (path) {
return self.propertyCache[path] || (self.propertyCache[path] = window.kg.utils.evalProperty(self.entity, path));
return window.kg.utils.evalProperty(self.entity, path);
};
};

Expand Down
2 changes: 1 addition & 1 deletion src/classes/row.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ window.kg.Row = function (entity, config, selectionService) {
self.afterSelectionChange = config.afterSelectionChangeCallback;
self.propertyCache = {};
self.getProperty = function (path) {
return self.propertyCache[path] || (self.propertyCache[path] = window.kg.utils.evalProperty(self.entity, path));
return window.kg.utils.evalProperty(self.entity, path);
};
};