mediawiki-extensions-Revisi.../modules/ext.RevisionSlider.Pointer.js

62 lines
1 KiB
JavaScript
Raw Normal View History

( function ( mw, $ ) {
/**
* Module containing logic for the revision pointers
*
* @param {string} name
* @constructor
*/
var Pointer = function ( name ) {
this.view = new mw.libs.revisionSlider.PointerView( this, name );
this.line = new mw.libs.revisionSlider.PointerLine( this, name );
};
$.extend( Pointer.prototype, {
/**
* @type {number}
*/
position: 0,
/**
* @type {PointerView}
*/
view: null,
/**
* @type {PointerLine}
*/
line: null,
/**
* @param {number} p
*/
setPosition: function ( p ) {
this.position = p;
this.getView().setDataPositionAttribute( p );
},
/**
* @return {number}
*/
getPosition: function () {
return this.position;
},
/**
* @return {PointerView}
*/
getView: function () {
return this.view;
},
/**
* @return {PointerLine}
*/
getLine: function () {
return this.line;
}
} );
mw.libs.revisionSlider = mw.libs.revisionSlider || {};
mw.libs.revisionSlider.Pointer = Pointer;
}( mediaWiki, jQuery ) );