fix bullet point issue - with pasting word documents
[roojs1] / Number.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11
12  /**
13  * @class Number
14  */
15 Roo.applyIf(Number.prototype, {
16     /**
17      * Checks whether or not the current number is within a desired range.  If the number is already within the
18      * range it is returned, otherwise the min or max value is returned depending on which side of the range is
19      * exceeded.  Note that this method returns the constrained value but does not change the current number.
20      * @param {Number} min The minimum number in the range
21      * @param {Number} max The maximum number in the range
22      * @return {Number} The constrained value if outside the range, otherwise the current value
23      */
24     constrain : function(min, max){
25         return Math.min(Math.max(this, min), max);
26     }
27 });