This commit is contained in:
@@ -1,7 +1,5 @@
|
||||
/* Xeslint-disable */
|
||||
|
||||
import _ from "../libs/lodash.min.js";
|
||||
|
||||
/////////////////////////////////
|
||||
// General utility library
|
||||
//
|
||||
@@ -78,7 +76,7 @@ export default {
|
||||
//
|
||||
normalizeTag: function(tagName) {
|
||||
//kebab case takes care of all the things we need for tags in one go
|
||||
tagName = _.kebabCase(tagName);
|
||||
tagName = window.$gz._.kebabCase(tagName);
|
||||
|
||||
//No longer than 255 characters
|
||||
tagName = tagName.length > 255 ? tagName.substr(0, 255 - 1) : tagName;
|
||||
|
||||
Reference in New Issue
Block a user