From c4848ba08bb08b8dcb6d191869d876c19f23ad6e Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Fri, 28 Mar 2014 17:01:19 +0000 Subject: [PATCH] Add config() accessor function. Used only by widget factory. --- src/mkws-team.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mkws-team.js b/src/mkws-team.js index 7c1f4ec..c7e20bf 100644 --- a/src/mkws-team.js +++ b/src/mkws-team.js @@ -40,6 +40,7 @@ function team($, teamName) { that.currentRecordId = function() { return m_currentRecordId; }; that.currentRecordData = function() { return m_currentRecordData; }; that.filters = function() { return m_filters; }; + that.config = function() { return m_config; }; // Accessor methods for individual widgets: writers that.set_sortOrder = function(val) { m_sortOrder = val }; -- 1.7.10.4