Skip to content

Commit

Permalink
fix check-for-new-version URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
natesilva committed Nov 3, 2015
1 parent 28e0bcd commit 8ef4bff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Support/content.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
</a>
<span class="update-available hidden">
<a class="label label-info open-external"
href="https://github.com/natesilva/jshint-external.tmbundle/releases/latest">
href="https://github.com/natesilva/javascript-eslint.tmbundle/releases/latest">
<span class="dingbat">✷</span> Update Available
</a>
</span>
Expand Down
3 changes: 2 additions & 1 deletion Support/document.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ Zepto(document).ready(function($) {
$('.update-checker').on('click', function(e) {
e.preventDefault();
$.ajax({
url: 'http://natesilva.github.io/javascript-eslint.tmbundle/latest.json',
url: 'https://raw.githubusercontent.com/natesilva/javascript-eslint.tmbundle/master/latest.json',
dataType: 'json',
success: function(data) {
$('.update-checker').addClass('hidden');
if (newer(VERSION, data.latest)) {
Expand Down

0 comments on commit 8ef4bff

Please sign in to comment.