mirror of
https://github.com/flarum/framework.git
synced 2024-11-30 05:13:37 +08:00
Release v0.1.0-beta.4
This commit is contained in:
parent
3cc5be1270
commit
8d6a44ff95
9
extensions/tags/CHANGELOG.md
Normal file
9
extensions/tags/CHANGELOG.md
Normal 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
|
8
extensions/tags/js/forum/dist/extension.js
vendored
8
extensions/tags/js/forum/dist/extension.js
vendored
|
@ -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';
|
'use strict';
|
||||||
|
|
||||||
var Component, IndexPage, listItems, humanTime, tagLabel, sortTags, TagsPage;
|
var Component, IndexPage, listItems, humanTime, icon, tagLabel, sortTags, TagsPage;
|
||||||
return {
|
return {
|
||||||
setters: [function (_flarumComponent) {
|
setters: [function (_flarumComponent) {
|
||||||
Component = _flarumComponent['default'];
|
Component = _flarumComponent['default'];
|
||||||
|
@ -926,6 +926,8 @@ System.register('flarum/tags/components/TagsPage', ['flarum/Component', 'flarum/
|
||||||
listItems = _flarumHelpersListItems['default'];
|
listItems = _flarumHelpersListItems['default'];
|
||||||
}, function (_flarumHelpersHumanTime) {
|
}, function (_flarumHelpersHumanTime) {
|
||||||
humanTime = _flarumHelpersHumanTime['default'];
|
humanTime = _flarumHelpersHumanTime['default'];
|
||||||
|
}, function (_flarumHelpersIcon) {
|
||||||
|
icon = _flarumHelpersIcon['default'];
|
||||||
}, function (_flarumTagsHelpersTagLabel) {
|
}, function (_flarumTagsHelpersTagLabel) {
|
||||||
tagLabel = _flarumTagsHelpersTagLabel['default'];
|
tagLabel = _flarumTagsHelpersTagLabel['default'];
|
||||||
}, function (_flarumTagsUtilsSortTags) {
|
}, function (_flarumTagsUtilsSortTags) {
|
||||||
|
@ -948,7 +950,7 @@ System.register('flarum/tags/components/TagsPage', ['flarum/Component', 'flarum/
|
||||||
}));
|
}));
|
||||||
|
|
||||||
app.current = this;
|
app.current = this;
|
||||||
app.history.push('tags');
|
app.history.push('tags', icon('th-large'));
|
||||||
app.drawer.hide();
|
app.drawer.hide();
|
||||||
app.modal.close();
|
app.modal.close();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user