Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ep_cursortrace

Package Overview
Dependencies
Maintainers
5
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ep_cursortrace - npm Package Compare versions

Comparing version 3.0.3 to 3.0.4

2

package.json
{
"name": "ep_cursortrace",
"description": "Show cursor/caret movements of other users in real time",
"version": "3.0.3",
"version": "3.0.4",
"author": "RedHog (Egil Moeller) <egil.moller@freecode.no>",

@@ -6,0 +6,0 @@ "repository":"git@github.com:redhog/ep_cursortrace.git",

@@ -8,3 +8,3 @@ var initiated = false;

// Set the title
$('body').on('mouseover', '#otheruserstable > tbody > tr > td > div', function(){
$('body').on('mouseover', '#otheruserstable > tbody > tr', function(){
$(this).css("cursor", "pointer");

@@ -14,11 +14,11 @@ $(this).attr("title", "Follow this author");

// Watch / follow a user
$('body').on('click', '#otheruserstable > tbody > tr > td > div', function(){
$('body').on('click', '#otheruserstable > tbody > tr', function(){
// already watching so stop watching
if($(this).hasClass("buttonicon-clearauthorship")){
$(this).removeClass("buttonicon buttonicon-clearauthorship");
$(this).find("td > div").removeClass("buttonicon buttonicon-clearauthorship");
isFollowing = false;
}else{
isFollowing = $(this).parent().parent().data("authorid");
$(this).text("W");
$(this).css({"font-size":"12px","color":"#666","padding-left":"3px"});
isFollowing = $(this).data("authorid");
$(this).find("td > div").text("👁");
$(this).find("td > div").css({"font-size":"12px","color":"#666","line-height":"17px","padding-left":"3px"});
}

@@ -252,3 +252,2 @@ // watchUser.toggle();

// works on earlier versions of Chrome (< 61)
console.log("newY", newY)
$outerdoc.animate({scrollTop: newY});

@@ -255,0 +254,0 @@ // works on Firefox & later versions of Chrome (>= 61)

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc