We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f69e50f commit 49d39ebCopy full SHA for 49d39eb
shelly/plotlyjs/static/plotlyjs/src/plotly_util.js
@@ -44,16 +44,6 @@ util.xml_entity_encode = function(str){
44
return str.replace(/&(?!\w+;|\#[0-9]+;| \#x[0-9A-F]+;)/g,'&');
45
};
46
47
-util.toCamelCase = function(_str){
48
- return _str.toLowerCase().replace(/-(.)/g, function(match, group1){ return group1.toUpperCase(); });
49
-};
50
-
51
-util.jsHook = function(_el){
52
- var jsHook = _el.className.match(/js-[^ ]+/);
53
- return (jsHook) ? jsHook[0] : null;
54
55
56
57
// text converter
58
/////////////////////////////
59
0 commit comments