1
0
mirror of synced 2024-11-22 21:16:10 +03:00

Merge pull request #3757 from christophano/master

Use apply when calling methods
This commit is contained in:
Kevin Brown 2015-09-10 08:34:38 -04:00
commit 4b5743f22e

View File

@ -35,7 +35,7 @@ define([
var args = Array.prototype.slice.call(arguments, 1);
var ret = instance[options](args);
var ret = instance[options].apply(instance, args);
// Check if we should be returning `this`
if ($.inArray(options, thisMethods) > -1) {