mirror of
https://github.com/greggman/twgl.js.git
synced 2026-02-01 16:00:22 +00:00
bump to 0.0.36
This commit is contained in:
parent
116f578deb
commit
c1c603a239
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "twgl.js",
|
||||
"version": "0.0.35",
|
||||
"version": "0.0.36",
|
||||
"homepage": "http://twgljs.org",
|
||||
"authors": [
|
||||
"Gregg Tavares <github@greggman.com>"
|
||||
|
||||
10
dist/twgl-full.js
vendored
10
dist/twgl-full.js
vendored
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @license twgl.js 0.0.35 Copyright (c) 2015, Gregg Tavares All Rights Reserved.
|
||||
* @license twgl.js 0.0.36 Copyright (c) 2015, Gregg Tavares All Rights Reserved.
|
||||
* Available via the MIT license.
|
||||
* see: http://github.com/greggman/twgl.js for details
|
||||
*/
|
||||
@ -490,7 +490,13 @@ define('twgl/twgl',[], function () {
|
||||
* @module twgl
|
||||
*/
|
||||
|
||||
var error = window.console && window.console.error ? window.console.error.bind(window.console) : function() { };
|
||||
var error =
|
||||
( window.console
|
||||
&& window.console.error
|
||||
&& typeof window.console.error === "function"
|
||||
)
|
||||
? window.console.error.bind(window.console)
|
||||
: function() { };
|
||||
// make sure we don't see a global gl
|
||||
var gl = undefined; // eslint-disable-line
|
||||
var defaultAttribPrefix = "";
|
||||
|
||||
4
dist/twgl-full.min.js
vendored
4
dist/twgl-full.min.js
vendored
File diff suppressed because one or more lines are too long
10
dist/twgl.js
vendored
10
dist/twgl.js
vendored
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @license twgl.js 0.0.35 Copyright (c) 2015, Gregg Tavares All Rights Reserved.
|
||||
* @license twgl.js 0.0.36 Copyright (c) 2015, Gregg Tavares All Rights Reserved.
|
||||
* Available via the MIT license.
|
||||
* see: http://github.com/greggman/twgl.js for details
|
||||
*/
|
||||
@ -490,7 +490,13 @@ define('twgl/twgl',[], function () {
|
||||
* @module twgl
|
||||
*/
|
||||
|
||||
var error = window.console && window.console.error ? window.console.error.bind(window.console) : function() { };
|
||||
var error =
|
||||
( window.console
|
||||
&& window.console.error
|
||||
&& typeof window.console.error === "function"
|
||||
)
|
||||
? window.console.error.bind(window.console)
|
||||
: function() { };
|
||||
// make sure we don't see a global gl
|
||||
var gl = undefined; // eslint-disable-line
|
||||
var defaultAttribPrefix = "";
|
||||
|
||||
4
dist/twgl.min.js
vendored
4
dist/twgl.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "twgl.js",
|
||||
"version": "0.0.35",
|
||||
"version": "0.0.36",
|
||||
"description": "A Tiny WebGL helper library",
|
||||
"main": "dist/twgl-full.js",
|
||||
"scripts": {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user