New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

jangular

Package Overview
Dependencies
Maintainers
1
Versions
110
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jangular - npm Package Compare versions

Comparing version 0.1.3 to 0.1.4

1

lib/jangular.js

@@ -51,2 +51,3 @@ /**

render: render,
jytRender: jyt.render,
addShortcutsToScope: jyt.addShortcutsToScope,

@@ -53,0 +54,0 @@ registerPlugin: jyt.registerPlugin,

@@ -167,2 +167,7 @@ /**

//** server side implementation of angular's attrs.$addClass
attrs.$addClass = function addClass(val) {
e.attributes.class = (e.attributes.class || '') + ' ' + val;
};
return attrs;

@@ -169,0 +174,0 @@ }

7

lib/jangular.runtime.js

@@ -57,2 +57,6 @@ /**

function angularizeNode(e) {
// if e doesn't exist, return here
if (!e) { return e; }
var attr = null;

@@ -69,5 +73,2 @@ var i = 0;

// if e doesn't exist, return here
if (!e) { return e; }
// if e is an array, we need to recurse with each item in the array

@@ -74,0 +75,0 @@ if (jyt.utils.isArray(e)) {

{
"name": "jangular",
"version": "0.1.3",
"version": "0.1.4",
"description": "JavaScript based templating engine for Angular",

@@ -5,0 +5,0 @@ "main": "lib/jangular.js",

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