removes a bunch of console.log that was recently added
This commit is contained in:
@@ -246,8 +246,6 @@
|
||||
function setAuditTrailLogTypeColor(auditTrail) {
|
||||
angular.forEach(auditTrail, function (item) {
|
||||
|
||||
console.log(item.logType);
|
||||
|
||||
switch (item.logType) {
|
||||
case "Save":
|
||||
item.logTypeColor = "primary";
|
||||
|
||||
@@ -13,8 +13,6 @@
|
||||
|
||||
function addEditor(editor) {
|
||||
|
||||
console.log("add:", editor)
|
||||
|
||||
editor.animating = true;
|
||||
|
||||
showOverlayOnPrevEditor();
|
||||
@@ -91,8 +89,6 @@
|
||||
|
||||
function removeEditor(editor) {
|
||||
|
||||
console.log("remove: ", editor)
|
||||
|
||||
editor.animating = true;
|
||||
|
||||
$timeout(function(){
|
||||
|
||||
@@ -116,7 +116,7 @@
|
||||
});
|
||||
|
||||
}).bind("typeahead:opened", function (obj) {
|
||||
console.log("opened ");
|
||||
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
@@ -216,7 +216,6 @@ function NavigationController($scope, $rootScope, $location, $log, $q, $routePar
|
||||
|
||||
//Emitted when a language is created or an existing one saved/edited
|
||||
evts.push(eventsService.on("editors.languages.languageSaved", function (e, args) {
|
||||
console.log('lang event listen args', args);
|
||||
if(args.isNew){
|
||||
//A new language has been created - reload languages for tree
|
||||
loadLanguages().then(function (languages) {
|
||||
|
||||
@@ -71,7 +71,6 @@ angular.module("umbraco").controller("Umbraco.PropertyEditors.NestedContent.Prop
|
||||
//$scope.model.config.contentTypes;
|
||||
//$scope.model.config.minItems;
|
||||
//$scope.model.config.maxItems;
|
||||
//console.log($scope);
|
||||
|
||||
var inited = false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user