Release v0.1.0-beta.4

This commit is contained in:
Toby Zerner 2015-11-05 16:36:16 +10:30
parent 3cc5be1270
commit 8d6a44ff95
2 changed files with 14 additions and 3 deletions

View File

@ -0,0 +1,9 @@
# Change Log
All notable changes to the Tags extension will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## [0.1.0-beta.4] - 2015-11-05
### Added
- Add back button icon when it leads to the Tags page
[0.1.0-beta.4]: https://github.com/flarum/subscriptions/compare/v0.1.0-beta.3...v0.1.0-beta.4

View File

@ -913,10 +913,10 @@ System.register('flarum/tags/components/TagLinkButton', ['flarum/components/Link
}
};
});;
System.register('flarum/tags/components/TagsPage', ['flarum/Component', 'flarum/components/IndexPage', 'flarum/helpers/listItems', 'flarum/helpers/humanTime', 'flarum/tags/helpers/tagLabel', 'flarum/tags/utils/sortTags'], function (_export) {
System.register('flarum/tags/components/TagsPage', ['flarum/Component', 'flarum/components/IndexPage', 'flarum/helpers/listItems', 'flarum/helpers/humanTime', 'flarum/helpers/icon', 'flarum/tags/helpers/tagLabel', 'flarum/tags/utils/sortTags'], function (_export) {
'use strict';
var Component, IndexPage, listItems, humanTime, tagLabel, sortTags, TagsPage;
var Component, IndexPage, listItems, humanTime, icon, tagLabel, sortTags, TagsPage;
return {
setters: [function (_flarumComponent) {
Component = _flarumComponent['default'];
@ -926,6 +926,8 @@ System.register('flarum/tags/components/TagsPage', ['flarum/Component', 'flarum/
listItems = _flarumHelpersListItems['default'];
}, function (_flarumHelpersHumanTime) {
humanTime = _flarumHelpersHumanTime['default'];
}, function (_flarumHelpersIcon) {
icon = _flarumHelpersIcon['default'];
}, function (_flarumTagsHelpersTagLabel) {
tagLabel = _flarumTagsHelpersTagLabel['default'];
}, function (_flarumTagsUtilsSortTags) {
@ -948,7 +950,7 @@ System.register('flarum/tags/components/TagsPage', ['flarum/Component', 'flarum/
}));
app.current = this;
app.history.push('tags');
app.history.push('tags', icon('th-large'));
app.drawer.hide();
app.modal.close();
}