Skip to content

Commit df066e3

Browse files
committed
src: expose className in instance objs
1 parent 6bb21ad commit df066e3

5 files changed

Lines changed: 13 additions & 9 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "quickbase",
3-
"version": "2.8.0",
3+
"version": "2.8.1",
44
"description": "A lightweight, very flexible QuickBase API",
55
"keywords": [
66
"QuickBase",

quickbase.browserify.min.js

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quickbase.es5.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,8 @@ var QuickBase = function () {
124124
function QuickBase(options) {
125125
_classCallCheck(this, QuickBase);
126126

127+
this.className = QuickBase.className;
128+
127129
this.settings = merge({}, QuickBase.defaults, options || {});
128130

129131
this.throttle = new Throttle(this.settings.connectionLimit, this.settings.errorOnConnectionLimit);

quickbase.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,8 @@ const defaults = {
102102
class QuickBase {
103103

104104
constructor(options) {
105+
this.className = QuickBase.className;
106+
105107
this.settings = merge({}, QuickBase.defaults, options || {});
106108

107109
this.throttle = new Throttle(this.settings.connectionLimit, this.settings.errorOnConnectionLimit);

quickbase.sa.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.

0 commit comments

Comments
 (0)