Files
NativeScript/apps/ui/app/button/background-page.ts
Nathan Walker 1e6fccf272 chore: cleanup
2020-07-23 14:03:37 -07:00

13 lines
298 B
TypeScript

import { View, Page } from '@nativescript/core';
export function applyTap(args) {
var page = <Page>(<View>args.object).page;
var css = '#test-element { ' + args.object.tag + ' }';
page.css = css;
}
export function resetTap(args) {
var page = <Page>(<View>args.object).page;
page.css = '';
}