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

@rails/actiontext

Package Overview
Dependencies
Maintainers
7
Versions
127
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rails/actiontext - npm Package Compare versions

Comparing version 7.1.3 to 7.2.0-beta1

6

app/assets/javascripts/actiontext.esm.js

@@ -774,5 +774,5 @@ var sparkMd5 = {

function didClick(event) {
const button = event.target.closest("button, input");
if (button && button.type === "submit" && button.form) {
submitButtonsByForm.set(button.form, button);
const {target: target} = event;
if ((target.tagName == "INPUT" || target.tagName == "BUTTON") && target.type == "submit" && target.form) {
submitButtonsByForm.set(target.form, target);
}

@@ -779,0 +779,0 @@ }

@@ -756,5 +756,5 @@ (function(factory) {

function didClick(event) {
const button = event.target.closest("button, input");
if (button && button.type === "submit" && button.form) {
submitButtonsByForm.set(button.form, button);
const {target: target} = event;
if ((target.tagName == "INPUT" || target.tagName == "BUTTON") && target.type == "submit" && target.form) {
submitButtonsByForm.set(target.form, target);
}

@@ -761,0 +761,0 @@ }

{
"name": "@rails/actiontext",
"version": "7.1.3",
"version": "7.2.0-beta1",
"description": "Edit and display rich text in Rails applications",

@@ -5,0 +5,0 @@ "module": "app/assets/javascripts/actiontext.esm.js",

Sorry, the diff of this file is too big to display

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