Skip to content

Commit

Permalink
Merge pull request #14 from ekonstantinidis/chrome-caches-requests
Browse files Browse the repository at this point in the history
Prevent chrome from caching the request
  • Loading branch information
ekonstantinidis committed May 27, 2015
2 parents 9928c8b + 3de50ad commit 28b973c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Gitify [![Build Status](https://magnum.travis-ci.com/ekonstantinidis/gitify.svg?token=9QR4ewbqbkEmHps6q5sq&branch=master)](https://magnum.travis-ci.com/ekonstantinidis/gitify)
Gitify [![Build Status](https://travis-ci.org/ekonstantinidis/gitify.svg?branch=master)](https://travis-ci.org/ekonstantinidis/gitify)
==========
GitHub Notifications on your menu bar.

Expand Down
2 changes: 1 addition & 1 deletion src/js/stores/notifications.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var NotificationsStore = Reflux.createStore({
var tokens = AuthStore.authStatus();

apiRequests
.getAuth('https://api.github.com/notifications')
.getAuth('https://api.github.com/notifications?now=' + Date.now())
.end(function (err, response) {
if (response && response.ok) {
// Success - Do Something.
Expand Down
5 changes: 5 additions & 0 deletions src/less/style.less
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,11 @@ html, body {
margin: 0;
background-color: #f5f5f5;

.col-xs-2,
.col-xs-10 {
padding: 0;
}

.avatar {
.BorderRadius(50%);
width: 25px;
Expand Down

0 comments on commit 28b973c

Please sign in to comment.