diff options
author | Frederic Hemberger <mail@frederic-hemberger.de> | 2011-09-26 14:41:39 +0200 |
---|---|---|
committer | Frederic Hemberger <mail@frederic-hemberger.de> | 2011-09-26 14:41:39 +0200 |
commit | ab62bb93558db7a422ee9c1b87e1b524b57dc5a4 (patch) | |
tree | a7dc9364e7cd5d20122c29acb649fddd69682afe | |
parent | 569717abdc90c5f4cca81d9785b143a8d2b6a67b (diff) | |
download | my_new_personal_website-ab62bb93558db7a422ee9c1b87e1b524b57dc5a4.tar.xz my_new_personal_website-ab62bb93558db7a422ee9c1b87e1b524b57dc5a4.zip |
jsHint'ed octopress.js
-rw-r--r-- | .themes/classic/source/javascripts/octopress.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.themes/classic/source/javascripts/octopress.js b/.themes/classic/source/javascripts/octopress.js index 35174fd8..c369625e 100644 --- a/.themes/classic/source/javascripts/octopress.js +++ b/.themes/classic/source/javascripts/octopress.js @@ -6,7 +6,7 @@ function getNav() { mobileNav.children('select').append('<option value="'+link.href+'">• '+link.text+'</option>'); }); mobileNav.children('select').bind('change', function(event) { - if (event.target.value) window.location.href = event.target.value; + if (event.target.value) { window.location.href = event.target.value; } }); } @@ -52,7 +52,7 @@ function testFeatures() { } function addCodeLineNumbers() { - if (navigator.appName == 'Microsoft Internet Explorer') { return; } + if (navigator.appName === 'Microsoft Internet Explorer') { return; } $('div.gist-highlight').each(function(code) { var tableStart = '<table><tbody><tr><td class="gutter">', lineNumbers = '<pre class="line-numbers">', @@ -72,7 +72,7 @@ function flashVideoFallback(){ flashplayerskin = "/assets/jwplayer/glow/glow.xml"; $('video').each(function(video){ video = $(video); - if (!Modernizr.video.h264 && swfobject.getFlashPlayerVersion() || window.location.hash.indexOf("flash-test") != -1){ + if (!Modernizr.video.h264 && swfobject.getFlashPlayerVersion() || window.location.hash.indexOf("flash-test") !== -1){ video.children('source[src$=mp4]').first().map(function(source){ var src = $(source).attr('src'), id = 'video_'+Math.round(1 + Math.random()*(100000)), |