diff --git a/index.js b/index.js
index b5b7739c1be1df8eac926a7ab1d0980dea1d6916..4cdcb43b98f651facfcb00af86781589b218d485 100644
--- a/index.js
+++ b/index.js
@@ -30,7 +30,7 @@ Package.initialize = function (req, params, handlers, cb) {
   let config = content[params.name];
   if (config) {
     config.mutationObserver = true;
-    config.resetButton = true;
+    config.resetButton = config.resetButton !== undefined ? config.resetButton : true;
   }
   cb(config);
 };