aboutsummaryrefslogtreecommitdiffstats
path: root/syte/static/js/components/mobile.js
diff options
context:
space:
mode:
authorAlexis Metaireau <alexis@notmyidea.org>2012-11-20 15:27:59 -0800
committerAlexis Metaireau <alexis@notmyidea.org>2012-11-20 15:27:59 -0800
commit2f89e783273a2ed72cb611771056319500c454e8 (patch)
tree4a2e76f9cbaecc97afadc96930a7c410a0d2a606 /syte/static/js/components/mobile.js
parentf9fd2f5c414fab9a3230e69b9370918eddcf2e5b (diff)
parent3ffd14fa4da0ca71e1f97a070973e4994bae8f61 (diff)
downloadpelican-themes-2f89e783273a2ed72cb611771056319500c454e8.tar.gz
Merge pull request #55 from arnaudbos/master
Fix syte social integration
Diffstat (limited to 'syte/static/js/components/mobile.js')
-rw-r--r--syte/static/js/components/mobile.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/syte/static/js/components/mobile.js b/syte/static/js/components/mobile.js
deleted file mode 100644
index 4b530b3..0000000
--- a/syte/static/js/components/mobile.js
+++ /dev/null
@@ -1,15 +0,0 @@
-
-var isMobileView = false;
-var mediaQuery = window.matchMedia("(max-width:600px)");
-
-if (mediaQuery.matches) {
- isMobileView = true;
-}
-
-$(function() {
- $('#mobile-nav-btn').click(function() {
- $('.main-section').toggleClass('nav-opened');
- });
-});
-
-