diff --git a/LICENSE b/LICENSE deleted file mode 100644 index ef37163..0000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2014 miWebb - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md deleted file mode 100644 index 6a42082..0000000 --- a/README.md +++ /dev/null @@ -1,55 +0,0 @@ -jQuery.sectionMenu -==================== - -The jQuery section menu plugin creates a side menu that allows you to scroll to the different sections on the page. Check the [demo](https://miwebb.github.io/jQuery.sectionMenu/) for more information. - -## Example - -### HTML - -
<html> - <body> - <section id="home" data-section-menu="Home"> - <p>Home</p> - </section> - <section id="about" data-section-menu="About"> - <p>About</p> - </section> - <section id="contact" data-section-menu="Contact"> - <p>Contact</p> - </section> - </body> -</html>- -### CSS -
<link rel="stylesheet" href="assets/css/jquery.sectionmenu.css" />- -### Javascript - -
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
-<script type="text/javascript" src="assets/js/jquery.fragmentscroll.min.js"></script>
-<script type="text/javascript" src="assets/js/jquery.sectionmenu.min.js"></script>
-<script type="text/javascript">
-$(window).load(function() {
- $('body').sectionMenu().fragmentScroll();
-});
-</script>
-
-## Options
-
-$('body').sectionMenu({
- // Show title in the menu
- enableTitle: true,
-
- // Outer element
- element: 'nav',
-
- // Class and data- name
- class: 'section-menu',
-
- // Insert content before the menu
- insertBefore: '',
-
- // Insert content after the menu
- insertAfter: ''
-});
diff --git a/assets/images/background.jpg b/assets/images/background.jpg
deleted file mode 100644
index d71353e..0000000
Binary files a/assets/images/background.jpg and /dev/null differ
diff --git a/bower.json b/bower.json
deleted file mode 100644
index 578856b..0000000
--- a/bower.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "name": "jQuery.sectionMenu",
- "description": "The jQuery section menu plugin creates a side menu that allows you to scroll to the different sections on the page.",
- "version": "1.0.1",
- "main": "assets/js/jquery.sectionMenu.min.js",
- "ignore": [
- "*.md",
- "LICENSE",
- "sectionmenu.jquery.json"
- ],
- "dependencies": {
- "jquery": ">= 1.7.0"
- }
-}
diff --git a/index.html b/index.html
index 8fe1fcc..e794b4d 100644
--- a/index.html
+++ b/index.html
@@ -53,5 +53,17 @@ We created some sections
to play with.