Created
March 25, 2015 14:45
-
-
Save werdnum/85e0eb2ac811c312e24f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* This is more or less an IconWidget that can be flagged | |
* @class | |
* @extends OO.ui.IconWidget | |
* @mixins OO.ui.FlaggedElement | |
* @constructor | |
* @param {Object} [config] Configuration options | |
*/ | |
OO.ui.IconDemoWidget = function OoUiIconDemoWidget( config ) { | |
config = config || {}; | |
OO.ui.IconDemoWidget.super.call( this, config ); | |
OO.ui.FlaggedElement.call( this, config ); | |
} | |
OO.inheritClass( OO.ui.IconDemoWidget, OO.ui.IconWidget ); | |
OO.mixinClass( OO.ui.IconDemoWidget, OO.ui.FlaggedElement ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment