Replace instances of ES6 const keyword with var

This commit was merged in pull request #107.
This commit is contained in:
Robin North
2018-01-18 20:47:49 +00:00
committed by BehindTheMath
parent b98e3ef914
commit cd09cc88d1
3 changed files with 3 additions and 3 deletions

View File

@@ -61,7 +61,7 @@ var formAction = function(el, event) {
el.setAttribute(attrClick, "submit");
const options = clone(this.options);
var options = clone(this.options);
options.triggerElement = el;
this.loadUrl(virtLinkElement.href, options);
};