mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-28 16:20:52 +00:00
Fix cite/template dialogs
I1a7fc7f2 broke cite/template dialog - onDescriptionClick is not defined. I can't find it anywhere in the VE-MW or OOUI source. Before my change, it was simply a no-op. But now we try to bind it in a way that breaks everything. This commit just removes that line since it was apparently not doing anything. Bug: 67814 Change-Id: I0b9c3318b3de8530e0ba9e355cd73eb7f70a6b5a
This commit is contained in:
parent
8e3b544479
commit
3acca7cdf5
|
@ -85,7 +85,6 @@ ve.ui.MWParameterPage = function VeUiMWParameterPage( parameter, name, config )
|
|||
|
||||
// Events
|
||||
this.$label.on( 'click', this.onLabelClick.bind( this ) );
|
||||
this.$description.on( 'click', this.onDescriptionClick.bind( this ) );
|
||||
|
||||
// Initialization
|
||||
this.$info
|
||||
|
|
Loading…
Reference in a new issue