web: Rename PublicAPI.register_source to PublicAPI.registerSource

This commit is contained in:
Nathan Adams 2020-11-17 22:06:54 +01:00 committed by Mike Welsh
parent f4a710c806
commit d6afe2edd3
1 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ export class PublicAPI {
* @param api The public API object. This must conform to the shape * @param api The public API object. This must conform to the shape
* of `SourceAPI`. * of `SourceAPI`.
*/ */
register_source(name: string, api: SourceAPI): void { registerSource(name: string, api: SourceAPI): void {
this.sources[name] = api; this.sources[name] = api;
} }
@ -268,7 +268,7 @@ export class PublicAPI {
} }
if (source_name !== undefined && source_api !== undefined) { if (source_name !== undefined && source_api !== undefined) {
public_api.register_source(source_name, source_api); public_api.registerSource(source_name, source_api);
// Install the faux plugin detection immediately. // Install the faux plugin detection immediately.
// This is necessary because scripts such as SWFObject check for the // This is necessary because scripts such as SWFObject check for the