Skip to content

Commit 07b900d

Browse files
committed
gulped
1 parent 86af790 commit 07b900d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

dist/schema-form.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -2190,7 +2190,7 @@ angular.module('schemaForm')
21902190
element[0].appendChild(sfBuilder.build(merged, decorator, slots, lookup));
21912191
//compile only children
21922192
$compile(element.children())(childScope);
2193-
2193+
21942194
//ok, now that that is done let's set any defaults
21952195
if (!scope.options || scope.options.setSchemaDefaults !== false) {
21962196
schemaForm.traverseSchema(schema, function(prop, path) {
@@ -2204,7 +2204,6 @@ angular.module('schemaForm')
22042204
}
22052205

22062206
scope.$emit('sf-render-finished', element);
2207-
console.timeEnd('render')
22082207
};
22092208

22102209
var defaultForm = ['*'];
@@ -2256,7 +2255,7 @@ console.timeEnd('render')
22562255
* @return {Any} the result of the expression
22572256
*/
22582257
scope.evalExpr = function(expression, locals) {
2259-
return $scope.$parent.$eval(expression, locals);
2258+
return scope.$parent.$eval(expression, locals);
22602259
};
22612260
}
22622261
};

0 commit comments

Comments
 (0)