Skip to content

Commit 3548951

Browse files
committed
jsPanel-bootstrap 1.2.1 release
internal code improvements only
1 parent 95822f9 commit 3548951

File tree

6 files changed

+27
-18
lines changed

6 files changed

+27
-18
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
---
44

5+
### Version 1.2.1 ###
6+
7+
Maintanance realease. No changes in the API, just internal code improvements
8+
9+
---
10+
511
### Version 1.2.0 ###
612

713
+ new **option.tooltip** implements a basic tooltip functionality. Tooltips can be positioned either top, right, left or bottom of the element the tooltip is applied to and offers almost all options a normal jsPanel has.

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
###NEWS:###
22

3+
+ 2014-05-11 **jsPanel-bootstrap version 1.2.1 released** No changes in the API, just internal code improvements.
4+
35
+ 2014-05-07 **jsPanel-bootstrap version 1.2.0 released** implementing a basic **tooltip** functionality - see change log.
46

57
---

jsPanel-bootstrap.jquery.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"window",
1313
"bootstrap"
1414
],
15-
"version": "1.2.0",
15+
"version": "1.2.1",
1616
"author": {
1717
"name": "Stefan Straesser",
1818
"url": "http://stefanstraesser.eu/",
Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* jQuery Plugin jsPanel for bootstrap
2-
Version: 1.2.0 2014-05-07 15:28
2+
Version: 1.2.1 2014-05-11 12:45
33
Dependencies:
44
jQuery library ( > 1.7.0 incl. 2.1.0 )
55
jQuery.UI library ( > 1.9.0 ) - (at least UI Core, Mouse, Widget, Draggable, Resizable)
@@ -20,7 +20,7 @@
2020
You should have received a copy of the GNU General Public License
2121
along with this program. If not, see <http://www.gnu.org/licenses/>.
2222
*/
23-
var jsPanelversion = '1.2.0 2014-05-07 15:28';
23+
var jsPanelversion = '1.2.1 2014-05-11 12:45';
2424

2525
(function ( $ ) {
2626

@@ -981,8 +981,9 @@ var jsPanelversion = '1.2.0 2014-05-07 15:28';
981981
{
982982
if( typeof optionToolbar[i] === 'object' )
983983
{
984-
var el = $( optionToolbar[i].item );
985-
if( typeof optionModal === 'string' && el.hasClass( 'btn' ) )
984+
var el = $( optionToolbar[i].item ), // Änderung in 1.2.1
985+
type = el.prop('tagName'); // Änderung in 1.2.1
986+
if( typeof optionModal === 'string' && type == 'BUTTON' ) // Änderung in 1.2.1
986987
{
987988
// set text of button
988989
el.append( optionToolbar[i].btntext );

0 commit comments

Comments
 (0)