Skip to content

Commit 3b3449d

Browse files
committed
Grid: missing semicolon
1 parent 88673ae commit 3b3449d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

grid-spf/slideshow-dataview.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
(function ($, undefined ) {
88

99
function format(string, object) {
10-
return string.replace(/\$\{(.+?)\}/g, function(match, key) { return object[key] });
10+
return string.replace(/\$\{(.+?)\}/g, function(match, key) { return object[key]; });
1111
}
1212

1313
$.widget( "ui.flickrDataview", $.ui.dataview, {

0 commit comments

Comments
 (0)