Browse Source

Merge 4380366ce2 into ff95b5e408

pull/234/merge
theurere 8 years ago committed by GitHub
parent
commit
8e0aaf871b
  1. 1
      static/js/libs/audiocontext.js
  2. 4
      static/js/libs/avltree.js
  3. 1
      static/js/libs/bootstrap.file-input.js
  4. 1
      static/js/libs/humanize.js
  5. 4
      static/js/libs/rAF.js
  6. 1
      static/js/libs/sha.js
  7. 1
      static/js/libs/sjcl.js
  8. 3
      static/js/libs/toastr.js
  9. 3
      static/js/libs/webrtc.adapter.js
  10. 1
      static/js/services/visibility.js

1
static/js/libs/audiocontext.js

@ -23,6 +23,7 @@ @@ -23,6 +23,7 @@
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
// Version 6ffd3f2917d32c28a6651644843edb979b42c3f0
(function(name, definition) {
if (typeof exports === "object") {
module.exports = definition();

4
static/js/libs/avltree.js

@ -41,7 +41,7 @@ @@ -41,7 +41,7 @@
* - reverseOrderTraverse O(logn + k), where k is number of traversed nodes
* </pre>
*/
// Version 6ffd3f2917d32c28a6651644843edb979b42c3f0
// Compatibility code to run standalone.
(function(root) {
@ -836,4 +836,4 @@ AvlTree.Node.prototype.isLeftChild = function() { @@ -836,4 +836,4 @@ AvlTree.Node.prototype.isLeftChild = function() {
// Return as global.
root.AvlTree = AvlTree;
}(window));
}(window));

1
static/js/libs/bootstrap.file-input.js

@ -10,6 +10,7 @@ @@ -10,6 +10,7 @@
<a class="btn">Browse</a>
*/
// Version 1.0.0
(function($) {
$.fn.bootstrapFileInput = function() {

1
static/js/libs/humanize.js

@ -20,6 +20,7 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION @@ -20,6 +20,7 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
// Version 0.0.9
(function() {

4
static/js/libs/rAF.js

@ -4,6 +4,8 @@ @@ -4,6 +4,8 @@
// requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel
// MIT license
// Version 682e5c880c92b445650c4880a6bf9f3897ec1c5b
// Repo https://gist.github.com/paulirish/1579671/682e5c880c92b445650c4880a6bf9f3897ec1c5b
(function() {
var lastTime = 0;
@ -28,4 +30,4 @@ @@ -28,4 +30,4 @@
window.cancelAnimationFrame = function(id) {
clearTimeout(id);
};
}());
}());

1
static/js/libs/sha.js

@ -9,6 +9,7 @@ @@ -9,6 +9,7 @@
Several functions taken from Paul Johnston
*/
// Version 1.5.0
(function(T){function z(a,c,b){var g=0,f=[0],h="",l=null,h=b||"UTF8";if("UTF8"!==h&&"UTF16"!==h)throw"encoding must be UTF8 or UTF16";if("HEX"===c){if(0!==a.length%2)throw"srcString of HEX type must be in byte increments";l=B(a);g=l.binLen;f=l.value}else if("ASCII"===c||"TEXT"===c)l=J(a,h),g=l.binLen,f=l.value;else if("B64"===c)l=K(a),g=l.binLen,f=l.value;else throw"inputFormat must be HEX, TEXT, ASCII, or B64";this.getHash=function(a,c,b,h){var l=null,d=f.slice(),n=g,p;3===arguments.length?"number"!==
typeof b&&(h=b,b=1):2===arguments.length&&(b=1);if(b!==parseInt(b,10)||1>b)throw"numRounds must a integer >= 1";switch(c){case "HEX":l=L;break;case "B64":l=M;break;default:throw"format must be HEX or B64";}if("SHA-1"===a)for(p=0;p<b;p++)d=y(d,n),n=160;else if("SHA-224"===a)for(p=0;p<b;p++)d=v(d,n,a),n=224;else if("SHA-256"===a)for(p=0;p<b;p++)d=v(d,n,a),n=256;else if("SHA-384"===a)for(p=0;p<b;p++)d=v(d,n,a),n=384;else if("SHA-512"===a)for(p=0;p<b;p++)d=v(d,n,a),n=512;else throw"Chosen SHA variant is not supported";
return l(d,N(h))};this.getHMAC=function(a,b,c,l,s){var d,n,p,m,w=[],x=[];d=null;switch(l){case "HEX":l=L;break;case "B64":l=M;break;default:throw"outputFormat must be HEX or B64";}if("SHA-1"===c)n=64,m=160;else if("SHA-224"===c)n=64,m=224;else if("SHA-256"===c)n=64,m=256;else if("SHA-384"===c)n=128,m=384;else if("SHA-512"===c)n=128,m=512;else throw"Chosen SHA variant is not supported";if("HEX"===b)d=B(a),p=d.binLen,d=d.value;else if("ASCII"===b||"TEXT"===b)d=J(a,h),p=d.binLen,d=d.value;else if("B64"===

1
static/js/libs/sjcl.js

@ -11,6 +11,7 @@ @@ -11,6 +11,7 @@
* @author Mike Hamburg
* @author Dan Boneh
*/
// Version 1.0.2
"use strict";
/*jslint indent: 2, bitwise: false, nomen: false, plusplus: false, white: false, regexp: false */

3
static/js/libs/toastr.js

@ -10,6 +10,7 @@ @@ -10,6 +10,7 @@
*
* Project: https://github.com/CodeSeven/toastr
*/
// Version 2.1.0
; (function (define) {
define(['jquery'], function ($) {
return (function () {
@ -372,4 +373,4 @@ @@ -372,4 +373,4 @@
} else {
window['toastr'] = factory(window['jQuery']);
}
}));
}));

3
static/js/libs/webrtc.adapter.js

@ -29,6 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT @@ -29,6 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
// Version 5b271d2cf71dd21805b7dc0ded7ef97ac764307e
/* More information about these options at jshint.com/docs/options */
/* jshint browser: true, camelcase: true, curly: true, devel: true,
@ -1798,4 +1799,4 @@ if (typeof module !== 'undefined') { @@ -1798,4 +1799,4 @@ if (typeof module !== 'undefined') {
//trace: not exposed on purpose.
};
});
}
}

1
static/js/services/visibility.js

@ -18,6 +18,7 @@ @@ -18,6 +18,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
// Version 0.1.0
"use strict";
define(['visibly'], function(visibly) {

Loading…
Cancel
Save