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 @@

Section 3

We created some sections
to play with.

+ diff --git a/sectionmenu.jquery.json b/sectionmenu.jquery.json deleted file mode 100644 index 609d136..0000000 --- a/sectionmenu.jquery.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "name": "sectionmenu", - "title": "jQuery.sectionMenu", - "description": "The jQuery section menu plugin creates a side menu that allows you to scroll to the different sections on the page.", - "keywords": [ - "animate", - "animation", - "fragment", - "hash", - "jquery", - "menu", - "navigation", - "responsive", - "section", - "scroll", - "scrollTo" - ], - "version": "1.0.1", - "author": { - "name": "miWebb", - "email": "info@miwebb.com", - "url": "https://www.miwebb.com" - }, - "maintainers": [ - { - "name": "Michael Webbers", - "email": "m.webbers@miwebb.com", - "url": "https://www.miwebb.com" - }, - { - "name": "Niels Groot Obbink", - "email": "info@webosaur.nl", - "url": "http://webosaur.nl" - } - ], - "licenses": [ - { - "type": "MIT", - "url": "https://github.com/miWebb/jQuery.sectionMenu/blob/master/LICENSE" - } - ], - "download": "https://github.com/miWebb/jQuery.sectionMenu/releases", - "homepage": "https://miWebb.github.com/jQuery.sectionMenu", - "demo": "https://miWebb.github.com/jQuery.sectionMenu", - "docs": "https://github.com/miWebb/jQuery.sectionMenu", - "bugs": "https://github.com/miWebb/jQuery.sectionMenu/issues", - "dependencies": { - "jquery": ">=1.7.0", - "jquery.fragmentscroll": ">=1.0.0" - } -}