pip-webui
Version:
HTML5 UI for LOB applications
21 lines (18 loc) • 650 B
HTML
<h2 class="text-title tm0 bm24">{{:: 'INFORM_DIALOG' | translate }}</h2>
<md-button class="lm0 md-raised md-accent flat" ng-click="onInfoDialogOpen($event)">{{:: 'OPEN_INFORM' | translate }}</md-button>
<pre class="text-body1 color-window-bg p16">
<h3 class="text-subhead2 m0">{{:: 'CODE' | translate}}</h3>
<code class="language-js">pipInformationDialog.show(
{
event: event,
title: 'Amazing!',
message: 'Stuff %s is really good',
item: 'Play CDG T-shirt',
ok: 'Take It'
},
function () {
console.log('Taken');
}
);
</code>
</pre>