Skip to content

Commit 28b973c

Browse files
Merge pull request #14 from ekonstantinidis/chrome-caches-requests
Prevent chrome from caching the request
2 parents 9928c8b + 3de50ad commit 28b973c

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Gitify [![Build Status](https://magnum.travis-ci.com/ekonstantinidis/gitify.svg?token=9QR4ewbqbkEmHps6q5sq&branch=master)](https://magnum.travis-ci.com/ekonstantinidis/gitify)
1+
Gitify [![Build Status](https://travis-ci.org/ekonstantinidis/gitify.svg?branch=master)](https://travis-ci.org/ekonstantinidis/gitify)
22
==========
33
GitHub Notifications on your menu bar.
44

src/js/stores/notifications.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var NotificationsStore = Reflux.createStore({
2626
var tokens = AuthStore.authStatus();
2727

2828
apiRequests
29-
.getAuth('https://api.github.com/notifications')
29+
.getAuth('https://api.github.com/notifications?now=' + Date.now())
3030
.end(function (err, response) {
3131
if (response && response.ok) {
3232
// Success - Do Something.

src/less/style.less

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,11 @@ html, body {
261261
margin: 0;
262262
background-color: #f5f5f5;
263263

264+
.col-xs-2,
265+
.col-xs-10 {
266+
padding: 0;
267+
}
268+
264269
.avatar {
265270
.BorderRadius(50%);
266271
width: 25px;

0 commit comments

Comments
 (0)