|
@@ -398,11 +398,6 @@ $(document).ready(function() {
|
|
|
// Assign returnData to the tags variable
|
|
|
tags = returnData;
|
|
|
|
|
|
- // Sort the tags
|
|
|
- returnData.sort(function (a, b) {
|
|
|
- return a.toLowerCase().localeCompare(b.toLowerCase())
|
|
|
- });
|
|
|
-
|
|
|
// Update tags on the canvas
|
|
|
updateTags();
|
|
|
}
|
|
@@ -444,8 +439,8 @@ $(document).ready(function() {
|
|
|
);
|
|
|
|
|
|
// Update tags on the canvas
|
|
|
- window.setTimeout(updateTags(), 100);
|
|
|
- // updateTags();
|
|
|
+ // window.setTimeout(updateTags(), 100);
|
|
|
+ updateTags();
|
|
|
|
|
|
// Zoom out animation
|
|
|
li.find("div").addClass("zoom-out");
|
|
@@ -453,7 +448,6 @@ $(document).ready(function() {
|
|
|
li.find("div").css("-ms-transform", "scale(1)");
|
|
|
li.find("div").css("-webkit-transform", "scale(1)");
|
|
|
li.find("div").css("transform", "scale(1)");
|
|
|
-
|
|
|
|
|
|
toggleTextElementOnFocus();
|
|
|
});
|