mathieudutour / Meteor-popup-confirm

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A clean and easy to use confirmation popup

Installation

$ meteor add matdutour:popup-confirm

Usage

new Confirmation({
  message: "Are you sure ?",
  title: "Confirmation",
  cancelText: "Cancel",
  okText: "Ok",
  success: true, // whether the button should be green or red
  focus: "cancel" // which button to autofocus, "cancel" (default) or "ok", or "none"
}, function (ok) {
  // ok is true if the user clicked on "ok", false otherwise
});

About


Languages

Language:CSS 89.1%Language:JavaScript 9.3%Language:HTML 1.6%