Skip to content

Commit be521e5

Browse files
committed
Remove trace
1 parent 5c940c5 commit be521e5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

fng-colour-picker.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
var fngColourPickerModule = angular.module('fng.colourPicker', ['color.picker']);
55

66
fngColourPickerModule.controller('FngColourPickerCtrl', ['$scope', function ($scope) {
7-
$scope.options = { };
7+
$scope.options = {};
88
}])
99
.directive('fngColourPicker', ['$compile', '$filter', 'pluginHelper', 'formMarkupHelper', 'cssFrameworkService',
1010
function ($compile, $filter, pluginHelper, formMarkupHelper, cssFrameworkService) {
@@ -21,8 +21,6 @@
2121
'swatchOnly': true
2222
};
2323
scope.options = Object.assign({}, overRiddenDefaults, processedAttr.directiveOptions);
24-
console.log(JSON.stringify(scope.options,null,2));
25-
scope.showOptions();
2624
template = pluginHelper.buildInputMarkup(scope, attrs.model, processedAttr.info, processedAttr.options, false, false, function (buildingBlocks) {
2725
return '<color-picker options="options" ' + buildingBlocks.common + '></color-picker>';
2826
});

0 commit comments

Comments
 (0)