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

ng-jhipster

Package Overview
Dependencies
Maintainers
2
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ng-jhipster - npm Package Compare versions

Comparing version 0.2.9 to 0.2.10

2

package.json

@@ -69,3 +69,3 @@ {

},
"version": "0.2.9",
"version": "0.2.10",
"scripts": {

@@ -72,0 +72,0 @@ "cleanup": "rimraf src/*.d.ts src/**/*.d.ts src/*.js src/**/*.js aot/* tests/**/*.d.ts tests/**/*.js tests/*.d.ts tests/*.js",

@@ -50,9 +50,10 @@ /*

JhiSortDirective.prototype.resetClasses = function () {
var _this = this;
var allThIcons = this.element.querySelectorAll(this.sortIconSelector);
allThIcons.forEach(function (value) {
value.classList.remove(_this.sortAscIcon);
value.classList.remove(_this.sortDescIcon);
value.classList.add(_this.sortIcon);
});
// Use normal loop instead of forEach because IE does not support forEach on NodeList.
for (var i = 0; i < allThIcons.length; i++) {
allThIcons[i].classList.remove(this.sortAscIcon);
allThIcons[i].classList.remove(this.sortDescIcon);
allThIcons[i].classList.add(this.sortIcon);
}
;
};

@@ -59,0 +60,0 @@ ;

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

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