We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f8a1395 + fd83964 commit d20bfd3Copy full SHA for d20bfd3
frontend/express/public/javascripts/countly/countly.views.js
@@ -1289,6 +1289,20 @@ window.ManageAppsView = countlyView.extend({
1289
break;
1290
}
1291
1292
+
1293
+ /*
1294
+ * Prevent text highlights
1295
+ */
1296
+ $("#clear-data > li").on("selectstart", function(e) {
1297
+ e.preventDefault();
1298
+ });
1299
+ $("#clear-app-data").on("selectstart", function(e) {
1300
1301
1302
+ $("#delete-app").on("selectstart", function(e) {
1303
1304
1305
1306
$("#app-management-bar .app-container").removeClass("active");
1307
$("#app-management-bar .app-container[data-id='" + appId + "']").addClass("active");
1308
0 commit comments