Skip to content

Commit

Permalink
fix for hidden nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
FrDH committed Oct 14, 2017
1 parent 2706163 commit 0fb4c0f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "jQuery.dotdotdot",
"version" : "3.0.4",
"version" : "3.0.5",
"main" : "dist/jquery.dotdotdot.js",
"authors" : "Fred Heusschen <[email protected]>",
"license" : "CC-BY-NC-4.0",
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "jQuery.dotdotdot",
"version" : "3.0.4",
"version" : "3.0.5",
"authors" : "Fred Heusschen <[email protected]>",
"license" : "CC-BY-NC-4.0",
"description" : "Dotdotdot is an advanced jQuery plugin for truncating multiple line content with an ellipsis.",
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.dotdotdot.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "jquery.dotdotdot",
"version" : "3.0.4",
"version" : "3.0.5",
"main" : "dist/jquery.dotdotdot.js",
"author" : "Fred Heusschen <[email protected]>",
"license" : "CC-BY-NC-4.0",
Expand Down
5 changes: 3 additions & 2 deletions src/jquery.dotdotdot.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* jQuery dotdotdot 3.0.4
* jQuery dotdotdot 3.0.5
* @requires jQuery 1.7.0 or later
*
* dotdotdot.frebsite.nl
Expand All @@ -15,7 +15,7 @@
'use strict';

var _PLUGIN_ = 'dotdotdot';
var _VERSION_ = '3.0.4';
var _VERSION_ = '3.0.5';

if ( $[ _PLUGIN_ ] && $[ _PLUGIN_ ].version > _VERSION_ )
{
Expand Down Expand Up @@ -526,6 +526,7 @@

return newSizes;
}
return oldSizes;
},

__getTextContent: function( elem )
Expand Down

0 comments on commit 0fb4c0f

Please sign in to comment.