Skip to content

Commit

Permalink
Build
Browse files Browse the repository at this point in the history
  • Loading branch information
cristian.jora committed Aug 23, 2017
1 parent c042bcd commit 5cbc696
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions dist/vue-tabs.common.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-nav-tabs v0.5.1
* vue-nav-tabs v0.5.2
* (c) 2017-present cristij <[email protected]>
* Released under the MIT License.
*/
Expand Down Expand Up @@ -134,7 +134,7 @@ var VueTabs = {
var simpleTitle = h(
'span',
{ 'class': 'title title_' + position, style: active ? titleStyles : {} },
[position === 'center' && this.renderIcon(index), '\xA0', title]
[position === 'center' && this.renderIcon(index), title]
);

if (tab.$slots.title) return tab.$slots.title;
Expand All @@ -150,7 +150,7 @@ var VueTabs = {
var simpleIcon = h(
'i',
{ 'class': icon },
[]
['\xA0']
);
if (!tab.$slots.title && icon) return simpleIcon;
},
Expand Down
6 changes: 3 additions & 3 deletions dist/vue-tabs.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-nav-tabs v0.5.1
* vue-nav-tabs v0.5.2
* (c) 2017-present cristij <[email protected]>
* Released under the MIT License.
*/
Expand Down Expand Up @@ -136,7 +136,7 @@ var VueTabs = {
var simpleTitle = h(
'span',
{ 'class': 'title title_' + position, style: active ? titleStyles : {} },
[position === 'center' && this.renderIcon(index), '\xA0', title]
[position === 'center' && this.renderIcon(index), title]
);

if (tab.$slots.title) return tab.$slots.title;
Expand All @@ -152,7 +152,7 @@ var VueTabs = {
var simpleIcon = h(
'i',
{ 'class': icon },
[]
['\xA0']
);
if (!tab.$slots.title && icon) return simpleIcon;
},
Expand Down
4 changes: 2 additions & 2 deletions dist/vue-tabs.min.js

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

Loading

0 comments on commit 5cbc696

Please sign in to comment.