Variables
namespacePrefix
namespacePrefix: string
Functions
destroySlimScroll
destroySlimScroll( el: any ) : void
highlight
highlight( code: string , lang?: string , wrap?: boolean , wrapPre?: boolean ) : PromiseInterface < string >
Parameters
code: string
Optional lang: string
Default value wrap: boolean = false
Default value wrapPre: boolean = false
makeRegOptions
Parameters
name: string
pluginClass: any
makeSlimScroll
makeSlimScroll( el: any , opts?: any ) : void
Parameters
el: any
Default value opts: any = {}
Returns void
registerHelperPlugins
registerHelperPlugins( ) : void
registerPlugin
registerPlugin( name: string , pluginClass: any ) : void
Parameters
name: string
pluginClass: any
Returns void
Object literals
defaultRegOpts
defaultRegOpts: object
loadPath
loadPath: string
Legend
Module
Object literal
Variable
Function
Function with type parameter
Index signature
Type alias
Enumeration
Enumeration member
Property
Method
Interface
Interface with type parameter
Constructor
Property
Method
Index signature
Class
Class with type parameter
Constructor
Property
Method
Accessor
Index signature
Inherited constructor
Inherited property
Inherited method
Inherited accessor
Protected property
Protected method
Protected accessor
Private property
Private method
Private accessor
Static property
Static method
The plugins module provides abstraction / base classes for jQuery plugins and some constructor/destructor stuff. jQuery plugins can either be created extending the
Plugin
class or if the jQuery UI Widget Factory is preferred, using theWidget
class. ```typescript export class MySuperWidget extends Widget {} ```