Skip to content

Commit

Permalink
Fixed translation in vitmalina#1322
Browse files Browse the repository at this point in the history
  • Loading branch information
mrg2001 committed Aug 30, 2016
1 parent 7c77062 commit f381a34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/w2tabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@
+ (tab['class'] ? ' ' + tab['class'] : '') +'" style="'+ tab.style +'" '+
' onmouseover = "' + (!tab.disabled ? "w2ui['"+ this.name +"'].tooltipShow('"+ tab.id +"', event);" : "") + '"'+
' onmouseout = "' + (!tab.disabled ? "w2ui['"+ this.name +"'].tooltipHide('"+ tab.id +"', event);" : "") + '"'+
' onclick="w2ui[\''+ this.name +'\'].click(\''+ tab.id +'\', event);">' + text + '</div>';
' onclick="w2ui[\''+ this.name +'\'].click(\''+ tab.id +'\', event);">' + w2utils.lang(text) + '</div>';
if (jq_el.length === 0) {
// does not exist - create it
var addStyle = '';
Expand Down

0 comments on commit f381a34

Please sign in to comment.