Skip to content

Instantly share code, notes, and snippets.

@rkaneko
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rkaneko/9fee33961d625c260b2e to your computer and use it in GitHub Desktop.
Save rkaneko/9fee33961d625c260b2e to your computer and use it in GitHub Desktop.
Hello world for kintone on cybozu.com .
/**
* Getting started kintone JavaScript customization .
*
* @author rkaneko
* @createdAt 2014/06/23
*/
(function () {
"use strict";
kintone.events.on('app.record.index.show', function(event) {
console.dir(event);
alert("Hello kintone appId: " + event.appId + " !");
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment