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

ep_cursortrace

Package Overview
Dependencies
Maintainers
2
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 2.0.11 to 2.0.12

2

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

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

@@ -249,5 +249,8 @@ var initiated = false;

var $inner = $('iframe[name="ace_outer"]').contents().find("#outerdocbody");
if(top < 30) top = 0; // top line needs to be left visible
var newY = top + "px";
$inner.scrollTop(newY); // works in Chrome not FF
$inner.animate({scrollTop: newY});
var $outerdoc = $('iframe[name="ace_outer"]').contents().find("#outerdocbody");
var $outerdocHTML = $('iframe[name="ace_outer"]').contents().find("#outerdocbody").parent();
$outerdoc.animate({scrollTop: newY});
if(browser.firefox) $outerdocHTML.animate({scrollTop: newY}); // needed for FF

@@ -254,0 +257,0 @@ }

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