Skip to content

Commit

Permalink
Replace all dots
Browse files Browse the repository at this point in the history
  • Loading branch information
Dustin committed Aug 5, 2013
1 parent 3e82c1a commit d8e4eff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jquery.bez.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Provided under the FreeBSD license: https://github.com/rdallasgray/bez/blob/master/LICENSE.txt
*/
jQuery.extend({ bez: function(coOrdArray) {
var encodedFuncName = "bez_" + jQuery.makeArray(arguments).join("_").replace(".", "p");
var encodedFuncName = "bez_" + jQuery.makeArray(arguments).join("_").replace(/\./g, "p");
if (typeof jQuery.easing[encodedFuncName] !== "function") {
var polyBez = function(p1, p2) {
var A = [null, null], B = [null, null], C = [null, null],
Expand Down

0 comments on commit d8e4eff

Please sign in to comment.