0
I Use This!
Inactive

Commits : Listings

Analyzed about 2 hours ago. based on code collected about 20 hours ago.
May 18, 2023 — May 18, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Stopped wrapping and styling the icon if it was already provided in the form of an html object. Now cloning content and icon when it is provided in the form of objects, as a same object can be set as parameter of several instances and should not be shared between them More... over 10 years ago
Now more strict with the definition of content : an empty string is actually valid content, while only null is the absence of content More... over 10 years ago
Stopped reinitializing the checkInterval at each update when the tooltip is open, as it is no longer necessary since this interval is no longer in charge of updating the content. Also forgot to set the interval back at 200ms after testing, oops. Done. More... over 10 years ago
Fixed the queues when delay = 0 : the jQuery .delay function should not be called at all so things can happen synchronously More... over 10 years ago
Throw an exception when an unknown public method is used, rather than failing silently and returning 'this'. Will help debug typos. More... over 10 years ago
Fixed the updateTooltip method to be used when the tooltip is not open More... over 10 years ago
Merged the 'content' and 'update' methods. 'update' is still working for retrocompatibility but is deprecated. More... over 10 years ago
Renamed the 'val' method to 'content', it seems more appropriate since the result can now be jquery objects and not only strings, if that is that's what was provided as content in the first place. Also sorted methods by alphabetical order. More... over 10 years ago
Updated copyrights to MIT licence More... over 10 years ago
Merge pull request #71 from louisameline/destroyFix More... over 10 years ago
Reverting index back to development version of Tooltipster More... over 10 years ago
Adding MIT license reference More... over 10 years ago
Updating min.js More... over 10 years ago
Changing version number More... over 10 years ago
Adding in icon fix and rewriting functionInit for the best of both worlds More... over 10 years ago
In showTooltip, find and hide the opened tooltips using the new tooltipstered class and the regular public method More... over 10 years ago
The default value for the onlyOne option is now false. A tooltip initialized with this value to true currently closes tooltips even if they have been set to interactive and not autoclosable. As the plugin is getting more robust and ready for heavy interactions, this behavior is questionable and should at least be disabled by default. Most people will not see the difference anyway since tooltips are closed quickly by default. More... over 10 years ago
Reviewed some comments that needed to be changed + a couple details More... over 10 years ago
Fixed the window events which did not work if the plugin name was different from tooltipster More... over 10 years ago
Added an exception to warn when a method is called on an unitialized element More... over 10 years ago
Forgot to bypass the .data method for window events More... over 10 years ago
Removed the lines that made changes in a select input close the tooltip if interactiveAutoClose is true. The plugin should not dictate an arbitrary behavior of some content of the tooltip, users should instead bind their content as they wish to the desired public methods. More... over 10 years ago
Added the tooltipstered class to put the window events back in order More... over 10 years ago
Fixed the way content is provided to the plugin to accept content in any form, especially an object with bindings etc. It is not tooltipster's job to filter stuff in the content and try to prevent XSS: people should not allow everything in their title attribute in the first place. Besides, the existing getContent function caused issues and not working adequately either More... over 10 years ago
Bind on orientationchange anyway, it cannot hurt and touchDevice is not accurate anyway More... over 10 years ago
Changed the order of things in the library : things which are basically bindings on the window all go to the end More... over 10 years ago
Removed the weird, unexpected, slow and almost undocumented feature that allowed to interact with the tooltips inside a container More... over 10 years ago
Unbind only the right functions for touch devices. Tooltips could previously collide with each other or even with the rest of the page before I namespaced More... over 10 years ago
Removed all .data calls except the attachment of the plugin to the original element, replaced by instance variables. Removed confusing variable names and used the self name convention. Removed useless var repetitions. Removed the awkward getContent function (to be replaced later). More... over 10 years ago
Fixed unbinding on body to unbind only the plugin handlers More... over 10 years ago