Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a5bce986 authored by Dirk Dougherty's avatar Dirk Dougherty Committed by android-build-merger
Browse files

Fix improper date reference in blog reader. am: 2732bb76 am: 0f6d4258

am: 53cd365b

* commit '53cd365b':
  Fix improper date reference in blog reader.

Change-Id: I300892c3c4439354917872839c18e4c029160df1
parents 7bea848a 53cd365b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2146,7 +2146,7 @@ function showSamples() {

    BlogReader.prototype.openModal_ = function(blog, post) {
      var published = new Date(post.published);
      var formattedDate = monthNames[published.getMonth()] + ' ' + published.getDay() + ' ' + published.getFullYear();
      var formattedDate = monthNames[published.getMonth()] + ' ' + published.getDate() + ' ' + published.getFullYear();
      this.blogReader.find('.dac-modal-header-open').attr('href', post.url);
      this.blogReader.find('.dac-modal-header-title').text(blog.title);
      this.blogReader.find('.dac-blog-reader-title').html(post.title);