This website works better with JavaScript.
Home
Explore
Help
Sign In
jan
/
mustache.js
mirror of
https://github.com/janl/mustache.js
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
46
Wiki
Activity
Browse Source
Fixed a problem with undefined function.
The default value was returned. But i need the value returned from pipelines
pull/691/head
Kieling
7 years ago
parent
d5b974c0dc
commit
9e0ddbcd31
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
mustache.js
+1
-1
mustache.min.js
+ 1
- 1
mustache.js
View File
@@ -388,7 +388,7 @@
} else if (self.parent && self.parent.view.hasOwnProperty(func)){
return self.parent.view[func](val);
} else {
return val
ue
;
return val;
}
};
return pipelines.reduce(pipelineResolver,value);
+ 1
- 1
mustache.min.js
File diff suppressed because it is too large
View File
Write
Preview
Loading…
Cancel
Save