Skip to content

Commit 87f1842

Browse files
Changed npm repository name and fixed bower dependancy
1 parent 8cd9abf commit 87f1842

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"webcomponents.js": "~0.5.5",
1717
"promise-polyfill": "~2.0.0",
1818
"jquery": "~2.1.3",
19-
"tween.js": "git@github.com:sole/tween.js.git"
19+
"tween.js": "https://github.com/tweenjs/tween.js.git"
2020
},
2121
"keywords": ["web-components"]
2222
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "HTML-GL",
2+
"name": "html-gl",
33
"version": "0.3.0",
44
"description": "Get as many FPS as you need by rendering HTML/CSS in WebGL",
55
"main": "index.js",

src/gl-element.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -308,8 +308,8 @@
308308
jQuery.fn[HTMLGL.JQ_PLUGIN_NAME] = function () {
309309
return this.each(function () {
310310
if (!jQuery.data(this, 'plugin_' + HTMLGL.JQ_PLUGIN_NAME)) {
311-
var propellerObj = HTMLGL.GLElement.createFromNode(this);
312-
jQuery.data(this, 'plugin_' + HTMLGL.JQ_PLUGIN_NAME, propellerObj);
311+
var htmlGLobj = HTMLGL.GLElement.createFromNode(this);
312+
jQuery.data(this, 'plugin_' + HTMLGL.JQ_PLUGIN_NAME, htmlGLobj);
313313
jQuery[HTMLGL.JQ_PLUGIN_NAME].elements.push(propellerObj);
314314
}
315315
});

0 commit comments

Comments
 (0)