')\n .addClass('tool-'+self.options.position)\n .addClass('toolbar-'+self.options.style)\n .append('
')\n .append('
')\n .appendTo('body')\n .css('opacity', 0)\n .hide();\n self.toolbar_arrow = self.toolbar.find('.arrow');\n self.initializeToolbar();\n },\n\n overrideOptions: function() {\n var self = this;\n $.each( self.options, function( $option ) {\n if (typeof(self.$elem.data('toolbar-'+$option)) != \"undefined\") {\n self.options[$option] = self.$elem.data('toolbar-'+$option);\n }\n });\n },\n\n initializeToolbar: function() {\n var self = this;\n self.populateContent();\n self.setTrigger();\n self.toolbarWidth = self.toolbar.width();\n },\n\n setTrigger: function() {\n var self = this;\n\n if (self.options.event != 'click') {\n\n var moveTime;\n function decideTimeout () {\n if (self.$elem.hasClass('pressed')) {\n moveTime = setTimeout(function() {\n self.hide();\n }, 150);\n } else {\n clearTimeout(moveTime);\n };\n };\n\n self.$elem.on({\n mouseenter: function(event) {\n if (self.$elem.hasClass('pressed')) {\n clearTimeout(moveTime);\n } else {\n self.show();\n }\n }\n });\n\n self.$elem.parent().on({\n mouseleave: function(event){ decideTimeout(); }\n });\n\n $('.tool-container').on({\n mouseenter: function(event){ clearTimeout(moveTime); },\n mouseleave: function(event){ decideTimeout(); }\n });\n }\n\n if (self.options.event == 'click') {\n self.$elem.on('click', function(event) {\n event.preventDefault();\n if(self.$elem.hasClass('pressed')) {\n self.hide();\n } else {\n self.show();\n }\n });\n\n if (self.options.hideOnClick) {\n $('html').on(\"click.toolbar\", function ( event ) {\n if (event.target != self.elem &&\n self.$elem.has(event.target).length === 0 &&\n self.toolbar.has(event.target).length === 0 &&\n self.toolbar.is(\":visible\")) {\n self.hide();\n }\n });\n }\n }\n\n if (self.options.hover) {\n var moveTime;\n\n function decideTimeout () {\n if (self.$elem.hasClass('pressed')) {\n moveTime = setTimeout(function() {\n self.hide();\n }, 150);\n } else {\n clearTimeout(moveTime);\n };\n };\n\n self.$elem.on({\n mouseenter: function(event) {\n if (self.$elem.hasClass('pressed')) {\n clearTimeout(moveTime);\n } else {\n self.show();\n }\n }\n });\n\n self.$elem.parent().on({\n mouseleave: function(event){ decideTimeout(); }\n });\n\n $('.tool-container').on({\n mouseenter: function(event){ clearTimeout(moveTime); },\n mouseleave: function(event){ decideTimeout(); }\n });\n }\n\n $(window).resize(function( event ) {\n event.stopPropagation();\n if ( self.toolbar.is(\":visible\") ) {\n self.toolbarCss = self.getCoordinates(self.options.position, 20);\n self.collisionDetection();\n self.toolbar.css( self.toolbarCss );\n self.toolbar_arrow.css( self.arrowCss );\n }\n });\n },\n\n populateContent: function() {\n var self = this;\n var location = self.toolbar.find('.tool-items');\n var content = $(self.options.content).clone( true ).find('a').addClass('tool-item');\n location.html(content);\n location.find('.tool-item').on('click', function(event) {\n event.preventDefault();\n self.$elem.trigger('toolbarItemClick', this);\n });\n },\n\n calculatePosition: function() {\n var self = this;\n self.arrowCss = {};\n self.toolbarCss = self.getCoordinates(self.options.position, self.options.adjustment);\n self.toolbarCss.position = 'absolute';\n self.toolbarCss.zIndex = self.options.zIndex;\n self.collisionDetection();\n self.toolbar.css(self.toolbarCss);\n self.toolbar_arrow.css(self.arrowCss);\n },\n\n getCoordinates: function( position, adjustment ) {\n var self = this;\n self.coordinates = self.$elem.offset();\n\n if (self.options.adjustment && self.options.adjustment[self.options.position]) {\n adjustment = self.options.adjustment[self.options.position] + adjustment;\n }\n\n switch(self.options.position) {\n case 'top':\n return {\n left: self.coordinates.left-(self.toolbar.width()\/2)+(self.$elem.outerWidth()\/2),\n top: self.coordinates.top-self.$elem.outerHeight()-adjustment,\n right: 'auto'\n };\n case 'left':\n return {\n left: self.coordinates.left-(self.toolbar.width()\/2)-(self.$elem.outerWidth()\/2)-adjustment,\n top: self.coordinates.top-(self.toolbar.height()\/2)+(self.$elem.outerHeight()\/2),\n right: 'auto'\n };\n case 'right':\n return {\n left: self.coordinates.left+(self.toolbar.width()\/2)+(self.$elem.outerWidth()\/2)+adjustment,\n top: self.coordinates.top-(self.toolbar.height()\/2)+(self.$elem.outerHeight()\/2),\n right: 'auto'\n };\n case 'bottom':\n return {\n left: self.coordinates.left-(self.toolbar.width()\/2)+(self.$elem.outerWidth()\/2),\n top: self.coordinates.top+self.$elem.outerHeight()+adjustment,\n right: 'auto'\n };\n }\n },\n\n collisionDetection: function() {\n var self = this;\n var edgeOffset = 20;\n if(self.options.position == 'top' || self.options.position == 'bottom') {\n self.arrowCss = {left: '50%', right: '50%'};\n if( self.toolbarCss.left < edgeOffset ) {\n self.toolbarCss.left = edgeOffset;\n self.arrowCss.left = self.$elem.offset().left + self.$elem.width()\/2-(edgeOffset);\n }\n else if(($(window).width() - (self.toolbarCss.left + self.toolbarWidth)) < edgeOffset) {\n self.toolbarCss.right = edgeOffset;\n self.toolbarCss.left = 'auto';\n self.arrowCss.left = 'auto';\n self.arrowCss.right = ($(window).width()-self.$elem.offset().left)-(self.$elem.width()\/2)-(edgeOffset)-5;\n }\n }\n },\n\n show: function() {\n var self = this;\n self.$elem.addClass('pressed');\n self.calculatePosition();\n self.toolbar.show().css({'opacity': 1}).addClass('animate-'+self.options.animation);\n self.$elem.trigger('toolbarShown');\n },\n\n hide: function() {\n var self = this;\n var animation = {'opacity': 0};\n\n self.$elem.removeClass('pressed');\n\n switch(self.options.position) {\n case 'top':\n animation.top = '+=20';\n break;\n case 'left':\n animation.left = '+=20';\n break;\n case 'right':\n animation.left = '-=20';\n break;\n case 'bottom':\n animation.top = '-=20';\n break;\n }\n\n self.toolbar.animate(animation, 200, function() {\n self.toolbar.hide();\n });\n\n self.$elem.trigger('toolbarHidden');\n },\n\n getToolbarElement: function () {\n return this.toolbar.find('.tool-items');\n }\n };\n\n $.fn.toolbar = function( options ) {\n if ($.isPlainObject( options )) {\n return this.each(function() {\n var toolbarObj = Object.create( ToolBar );\n toolbarObj.init( options, this );\n $(this).data('toolbarObj', toolbarObj);\n });\n } else if ( typeof options === 'string' && options.indexOf('_') !== 0 ) {\n var toolbarObj = $(this).data('toolbarObj');\n var method = toolbarObj[options];\n return method.apply(toolbarObj, $.makeArray(arguments).slice(1));\n }\n };\n\n $.fn.toolbar.options = {\n content: '#myContent',\n position: 'top',\n hideOnClick: false,\n zIndex: 120,\n hover: false,\n style: 'default',\n animation: 'standard',\n adjustment: 10\n };\n});\n"],"file":"jquery-toolbar.min.js"}