From 19de5556c0a29f386612b31887134a3c68842512 Mon Sep 17 00:00:00 2001 From: Ashwin Kumar Date: Thu, 5 Mar 2020 13:08:07 +0530 Subject: [PATCH] docs: Fix simple typo, unintentianally -> unintentionally (#125) There is a small typo in django_blog_it/django_blog_it/static/js/jquery.smartmenus.js. Should read `unintentionally` rather than `unintentianally`. --- django_blog_it/django_blog_it/static/js/jquery.smartmenus.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django_blog_it/django_blog_it/static/js/jquery.smartmenus.js b/django_blog_it/django_blog_it/static/js/jquery.smartmenus.js index 9efd459..09f3d19 100644 --- a/django_blog_it/django_blog_it/static/js/jquery.smartmenus.js +++ b/django_blog_it/django_blog_it/static/js/jquery.smartmenus.js @@ -35,7 +35,7 @@ var eNS = '.smartmenus_mouse'; if (!mouseDetectionEnabled && !disable) { // if we get two consecutive mousemoves within 2 pixels from each other and within 300ms, we assume a real mouse/cursor is present - // in practice, this seems like impossible to trick unintentianally with a real mouse and a pretty safe detection on touch devices (even with older browsers that do not support touch events) + // in practice, this seems like impossible to trick unintentionally with a real mouse and a pretty safe detection on touch devices (even with older browsers that do not support touch events) var firstTime = true, lastMove = null; $(document).bind(getEventsNS([ @@ -1212,4 +1212,4 @@ }; return $; -})); \ No newline at end of file +}));