From 51b09120ea8a4b30c76bf5cc5ca3c5f51a32469f Mon Sep 17 00:00:00 2001 From: wuqq <330634035@qq.com> Date: Mon, 24 Oct 2016 19:36:35 +0800 Subject: [PATCH] Update jquery.menu-aim.js --- jquery.menu-aim.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jquery.menu-aim.js b/jquery.menu-aim.js index 0c32941..adb7f3a 100644 --- a/jquery.menu-aim.js +++ b/jquery.menu-aim.js @@ -72,7 +72,7 @@ (function($) { $.fn.menuAim = function(opts) { - // Initialize menu-aim for all elements in jQuery collection + // 初始化menu-aim jQuery集合所有元素 this.each(function() { init.call(this, opts); }); @@ -103,6 +103,7 @@ /** * Keep track of the last few locations of the mouse. + * 跟踪鼠标过去几个位置。 */ var mousemoveDocument = function(e) { mouseLocs.push({x: e.pageX, y: e.pageY});