diff options
| author | Thomas Park <thomas@thomaspark.me> | 2015-03-05 12:22:26 -0500 |
|---|---|---|
| committer | Thomas Park <thomas@thomaspark.me> | 2015-03-05 12:22:26 -0500 |
| commit | 45f5c2490bdff587678e4c6edb8e8b6458cd4437 (patch) | |
| tree | eaf2d5f6cf0512f47c3f8d09c3357c316990e18a | |
| parent | e812e6775b01a97b4dbabe1e47e04488c947332c (diff) | |
fix missing bracket in script, closes #416
| -rw-r--r-- | assets/js/bootswatch.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/js/bootswatch.js b/assets/js/bootswatch.js index cc6ca998..5a9a6a55 100644 --- a/assets/js/bootswatch.js +++ b/assets/js/bootswatch.js @@ -10,7 +10,7 @@ $('#home > .navbar').addClass('navbar-transparent'); }); - $("a[href='#'").click(function(e) { + $("a[href='#']").click(function(e) { e.preventDefault(); }); |
