bakunin95 / wavi

Web Application Viewer - generate class diagram for web application
Other
145 stars 23 forks source link

Change Maximum functions #15

Closed kevinafreeman closed 8 years ago

kevinafreeman commented 8 years ago

Is there an easy way to change the maximum number of functions from 100?

bakunin95 commented 8 years ago

comment or change the "100" for theses lines in: wavi/lib/deps/parsersLib.js

if(attributesSlot1.length > 100){ attributesSlot1 = attributesSlot1.slice(0, 100); attributesSlot1.push("..."); } if(attributesSlot2.length > 100){ attributesSlot2 = attributesSlot2.slice(0, 100); attributesSlot2.push("..."); }

kevinafreeman commented 8 years ago

Thank you very much!