mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-13 17:57:06 +00:00
8657171471
The sticky header is currently disabled unconditionally and nothing is wired up, with placeholders for data and functionality which will be added in future. Bug: T289716 Change-Id: I16223ce849267e718aad22b8a24b2327332ac8b7
14 lines
350 B
JavaScript
14 lines
350 B
JavaScript
import mustache from 'mustache';
|
|
import '../resources/skins.vector.styles/components/StickyHeader.less';
|
|
|
|
import { template, data,
|
|
STICKY_HEADER_TEMPLATE_PARTIALS } from './StickyHeader.stories.data';
|
|
|
|
export default {
|
|
title: 'StickyHeader'
|
|
};
|
|
|
|
export const stickyHeader = () => mustache.render(
|
|
template, data, STICKY_HEADER_TEMPLATE_PARTIALS
|
|
);
|