Side navigation
#10273 closed feature (wontfix)
Opened September 14, 2011 07:35AM UTC
Closed September 14, 2011 01:34PM UTC
jQuery.now, more short
| Reported by: | pinal | Owned by: | |
|---|---|---|---|
| Priority: | low | Milestone: | None |
| Component: | core | Version: | 1.6.4rc1 |
| Keywords: | Cc: | ||
| Blocked by: | Blocking: |
Description
I think this
now: function() {
return (new Date()).getTime();
},
can be shoter:
now: function() {
return + new Date();
},
Attachments (0)
Change History (1)
Changed September 14, 2011 01:34PM UTC by comment:1
| component: | unfiled → core |
|---|---|
| priority: | undecided → low |
| resolution: | → wontfix |
| status: | new → closed |
That is what it used to be and was intentionally changed to the current form.