mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
8756d82cf6
Summary: I'm pretty sure that `@group` annotations are useless now... see D9855. Also fixed various other minor issues. Test Plan: Eye-ball it. Reviewers: #blessed_reviewers, epriestley, chad Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, Korvin, hach-que Differential Revision: https://secure.phabricator.com/D9859
20 lines
625 B
JavaScript
20 lines
625 B
JavaScript
/**
|
|
* @javelin
|
|
*/
|
|
|
|
/**
|
|
* Register a callback for invocation after DOMContentReady.
|
|
*
|
|
* NOTE: Although it isn't private, use of this function is heavily discouraged.
|
|
* See @{article:Concepts: Behaviors} for information on using behaviors to
|
|
* structure and invoke glue code.
|
|
*
|
|
* This function is defined as a side effect of init.js.
|
|
*
|
|
* @param function Callback function to invoke after DOMContentReady.
|
|
* @return void
|
|
*/
|
|
JX.onload = function(callback) {
|
|
// This isn't the real function definition, it's only defined here to let the
|
|
// documentation generator find it. The actual definition is in init.js.
|
|
};
|