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

ember-cli-pickadate

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-cli-pickadate - npm Package Compare versions

Comparing version 0.3.0 to 0.3.1

1

8

addon/components/pick-a-date.js

@@ -46,6 +46,8 @@ import Ember from 'ember';

date.setYear(dateItem.year);
date.setMonth(dateItem.month);
date.setDate(dateItem.date);
let newDate = new Date(date)
newDate.setYear(dateItem.year);
newDate.setMonth(dateItem.month);
newDate.setDate(dateItem.date);
this.set('date', newDate);
})
});

@@ -37,4 +37,7 @@ import Ember from 'ember';

}
date.setHours(dateItem.hour, dateItem.mins, 0, 0);
let newDate = new Date(date);
newDate.setHours(dateItem.hour, dateItem.mins, 0, 0);
this.set('date', newDate);
})
});
{
"name": "ember-cli-pickadate",
"version": "0.3.0",
"version": "0.3.1",
"description": "Ember components wrapping date and time pickers from Pickadate.js",

@@ -5,0 +5,0 @@ "directories": {

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