https://bugzilla.wikimedia.org/show_bug.cgi?id=52198

--- Comment #2 from Carl Fürstenberg <[email protected]> ---
> > >      if (content.params) {

If we had used coffescript instead of plain JS, it would be so simple to write
that as:
 if content?.params
   ...

Now I assume we'll need to do it manually as
  if (typeof content !== "undefined" && content !== null && content.params) {
    ...
  }

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to