Skip to content

Commit

Permalink
Merge branch 'develop' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
Fábio Santos committed Sep 23, 2014
2 parents d085ce8 + d47317d commit 480454d
Show file tree
Hide file tree
Showing 10 changed files with 7 additions and 15 deletions.
2 changes: 0 additions & 2 deletions dist/js/ink-all.js
Original file line number Diff line number Diff line change
Expand Up @@ -13580,8 +13580,6 @@ Ink.createModule('Ink.UI.Carousel', '1',
}

this._currentPage = page;

this._updateHider();
},

/**
Expand Down
2 changes: 1 addition & 1 deletion dist/js/ink-all.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/ink-all.min.map

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions dist/js/ink-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -536,8 +536,6 @@ Ink.createModule('Ink.UI.Carousel', '1',
}

this._currentPage = page;

this._updateHider();
},

/**
Expand Down
2 changes: 1 addition & 1 deletion dist/js/ink-ui.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/ink-ui.min.map

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions dist/js/ink.carousel.js
Original file line number Diff line number Diff line change
Expand Up @@ -368,8 +368,6 @@ Ink.createModule('Ink.UI.Carousel', '1',
}

this._currentPage = page;

this._updateHider();
},

/**
Expand Down
2 changes: 0 additions & 2 deletions src/js/Ink/UI/Carousel/1/lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -368,8 +368,6 @@ Ink.createModule('Ink.UI.Carousel', '1',
}

this._currentPage = page;

this._updateHider();
},

/**
Expand Down
2 changes: 1 addition & 1 deletion test/unit/Ink.UI.Tabs_1/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Ink.requireModules(['Ink.UI.Tabs_1', 'Ink.UI.Common_1', 'Ink.Dom.Element_1', 'In
tabComponent._changeTab(Ink.s('a', changeTo));

ok(changeTo.className.match(/active/), 'tab has .active class!');
strictEqual(tabComponent.activeMenuTab(), changeTo, 'tab is active!');
strictEqual(tabComponent._activeMenuTab, changeTo, 'tab is active!');

var activeTabs = Ink.ss('.tabs-nav .active', container);
equal(activeTabs.length, 1, 'only ever one active tab');
Expand Down
4 changes: 2 additions & 2 deletions test/unit/Ink.Util.I18n_1/Ink.Util.I18n_1.js
Original file line number Diff line number Diff line change
Expand Up @@ -282,12 +282,12 @@ Ink.requireModules( [ 'Ink.Util.I18n' ] , function ( I18n ) {
});

test('Global stuff', function () {
I18n.lang('en_US')
I18n.langGlobal('en_US')
equal(new I18n({}).lang(), 'en_US');

var inst = new I18n({}, 'pt_PT');

I18n.append({
I18n.appendGlobal({
pt_PT: {
hello: 'olá'
},
Expand Down

0 comments on commit 480454d

Please sign in to comment.