mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 03:12:54 +03:00
153f76aa7c
Closes #3254, closes #3138, closes #3245 ### Settings Routing and View refactoring - Refactored `SettingsView` to handle transitions between mobile and desktop layouts - `SettingsRoute` will only transition to `settings.general` if the screen is large enough to show both the menu and the content - Added `SettingsIndexView` to handle showing the settings menu on mobile screens - Added `SettingsContentBaseView` to be inherited by any settings view that is not index. - Updated Settings templates appropriately to work with new views - Removed extraneous `active` class from `settings-content` - Changed settings menu to use `gh-activating-list-item` - Retooled settings tests ### Mobile Utils - Renamed file to `mobile.js`, since it's inside of `utils/` - Added `mobileQuery` MediaQueryList to help detect layout changes - Removed unused `hasTouchScreen`, `device.js` should be used instead. - Removed unused `smallScreen` function - Moved FastClickInit to codemirror-mobile
16 lines
498 B
JavaScript
16 lines
498 B
JavaScript
/**
|
|
* All settings views other than the index should inherit from this base class.
|
|
* It ensures that the correct screen is showing when a mobile user navigates
|
|
* to a `settings.someRouteThatIsntIndex` route.
|
|
*/
|
|
|
|
var SettingsContentBaseView = Ember.View.extend({
|
|
tagName: 'section',
|
|
classNames: ['settings-content', 'fade-in'],
|
|
showContent: function () {
|
|
this.get('parentView').showSettingsContent();
|
|
}.on('didInsertElement')
|
|
});
|
|
|
|
export default SettingsContentBaseView;
|