blob: fcb05868cbc7cf0c91c5631e915ccc8908c103e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// ==========================================================================
// Docs example
// ==========================================================================
/*global simpleMedia, templates */
// Register a callback
simpleMedia.on("setup", function() {
console.log(this);
});
//execute shout
simpleMedia.setup({
debug: true,
title: "PayPal demo",
html: templates.controls.render({})
});
|