Sha256: fb5928c07cba4e12d6aade6bc0b870bd89fe121918c0963fc5dff1444d70803d
Contents?: true
Size: 595 Bytes
Versions: 3
Compression:
Stored size: 595 Bytes
Contents
/*! * UI development toolkit for HTML5 (OpenUI5) * (c) Copyright 2009-2018 SAP SE or an SAP affiliate company. * Licensed under the Apache License, Version 2.0 - see LICENSE.txt. */ sap.ui.define(['sap/ui/core/Control','./library','./SliderTooltipBaseRenderer'],function(C,L,S){"use strict";var a=C.extend("sap.m.SliderTooltipBase",{metadata:{library:"sap.m"}});a.prototype.init=function(){this.fValue=0;};a.prototype.setValue=function(v){this.fValue=v;this.sliderValueChanged(v);};a.prototype.getValue=function(){return this.fValue;};a.prototype.sliderValueChanged=function(v){};return a;});
Version data entries
3 entries across 3 versions & 1 rubygems