mirror of
https://github.com/google/nomulus.git
synced 2025-05-13 16:07:15 +02:00
Remove final uses of @code in JS comments
This fixes the build broken by [] ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=186782466
This commit is contained in:
parent
cb80a0df1e
commit
a898413c8c
10 changed files with 12 additions and 29 deletions
|
@ -77,7 +77,7 @@ registry.Console.prototype.bindToDom = function() {
|
|||
|
||||
/**
|
||||
* Subclasses should override to visit the hash token given by
|
||||
* {@code goog.History.getToken()}.
|
||||
* `goog.History.getToken()`.
|
||||
*/
|
||||
registry.Console.prototype.handleHashChange = goog.abstractMethod;
|
||||
|
||||
|
|
|
@ -94,8 +94,8 @@ registry.EditItem.prototype.setupAppbar = function() {
|
|||
|
||||
|
||||
/**
|
||||
* Retrieve item from server. Overrides should callback to {@code
|
||||
* #handleFetchItem(string, !Object)}.
|
||||
* Retrieve item from server. Overrides should callback to
|
||||
* `#handleFetchItem(string, !Object)`.
|
||||
* @param {string} id item id.
|
||||
*/
|
||||
registry.EditItem.prototype.fetchItem = goog.abstractMethod;
|
||||
|
@ -136,8 +136,8 @@ registry.EditItem.prototype.isEditing = function() {
|
|||
/**
|
||||
* Toggles the editing state of a component. This will first hide the
|
||||
* elements of the `shown` class, then adds the `editing`
|
||||
* style to the component, then shows the elements that had the {@code
|
||||
* hidden} class.
|
||||
* style to the component, then shows the elements that had the `hidden`
|
||||
* class.
|
||||
*/
|
||||
registry.EditItem.prototype.toggleEdit = function() {
|
||||
// Toggle appbar buttons.
|
||||
|
|
|
@ -103,7 +103,7 @@ goog.inherits(registry.registrar.Console, registry.Console);
|
|||
* #type/id
|
||||
* </pre>
|
||||
*
|
||||
* <p>The `id` part may be appended by {@code ()} to specify the target
|
||||
* <p>The `id` part may be appended by `()` to specify that the target
|
||||
* should be a resource create page.
|
||||
*
|
||||
* @override
|
||||
|
|
|
@ -334,7 +334,7 @@ registry.registrar.Payment.prototype.onMessage_ = function(e) {
|
|||
*
|
||||
* <p>This approach is also advantageous for screenshot testing. We do not want
|
||||
* our continuous integration testing system to talk to Braintree's servers. So
|
||||
* we mock out the brainframe with {@code integration-test-brainframe.html}
|
||||
* we mock out the brainframe with `integration-test-brainframe.html`
|
||||
* which <i>only</i> sends us a METHOD message, which we then render ourselves.
|
||||
*
|
||||
* @param {!braintreepayments.PaymentMethod} pm
|
||||
|
|
|
@ -20,7 +20,7 @@ goog.require('goog.soy');
|
|||
|
||||
|
||||
/**
|
||||
* Logging function that delegates to {@code console.log()}.
|
||||
* Logging function that delegates to `console.log()`.
|
||||
* @param {...*} var_args
|
||||
*/
|
||||
registry.util.log = function(var_args) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue