/* The MIT License (MIT) Copyright (c) <2013> 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. */ if ( typeof Object.create !== 'function' ) { Object.create = function( obj ) { function F() {} F.prototype = obj; return new F(); }; } (function( $, window, document, undefined ) { "use strict"; var Anchorific = { init: function( options, elem ) { var self = this; self.elem = elem; self.$elem = $( elem ); self.opt = $.extend( {}, this.opt, options ); self.headers = self.$elem.find( self.opt.headers ); self.previous = 0; // Fix bug #1 if ( self.headers.length !== 0 ) { self.first = parseInt( self.headers.prop( 'nodeName' ).substring( 1 ), null ); } self.build(); }, opt: { navigation: '.anchorific', // position of navigation headers: 'h1, h2, h3, h4, h5, h6', speed: 200, // speed of sliding back to top anchorClass: 'ae-anchor', // class of anchor links anchorText: 'TOP', // prepended or appended to anchor headings top: '.ae-top', // back to top button or link class spy: true, // scroll spy position: 'append', // position of anchor text spyOffset: !0 // specify heading offset for spy scrolling }, build: function() { var self = this, obj, navigations = function() {}; // when navigation configuration is set if ( self.opt.navigation ) { $( self.opt.navigation ).append( '