summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2015-07-23 18:42:41 +0300
committerAlon Levy <alon@pobox.com>2015-07-23 18:42:41 +0300
commit134cd048ee1429873e3277280307800296b26450 (patch)
tree3f46ad1faf149dad07ec87a895784830c9d6c919
parent0f1699a38fe2a83de923acb32057ece14112672b (diff)
client/model/util: add missing semicolons
-rw-r--r--src/client/model/util.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/client/model/util.js b/src/client/model/util.js
index 179c480d..60c85979 100644
--- a/src/client/model/util.js
+++ b/src/client/model/util.js
@@ -16,7 +16,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-"use strict"
+"use strict";
/**
* model utility functions: - convert from/to client/backend data
@@ -63,10 +63,10 @@ define([ 'jquery', 'model/diff' ], function($, model_diff) {
ret['__label_set'] = [__sanitize_label__write(n_raw.type)];
delete ret.state;
- delete ret.status
+ delete ret.status;
delete ret.type;
- return ret
+ return ret;
}
/**
@@ -118,11 +118,11 @@ define([ 'jquery', 'model/diff' ], function($, model_diff) {
new_n_set = $.map(new_n_set, function(n, _) {
return adapt_format_write_node(n);
- })
+ });
new_l_set = $.map(new_l_set, function(l, _) {
return adapt_format_write_link(l);
- })
+ });
var topo_diff = new model_diff.new_topo_diff({
node_set_add : new_n_set,
@@ -149,5 +149,5 @@ define([ 'jquery', 'model/diff' ], function($, model_diff) {
adapt_format_write_diff__topo : adapt_format_write_diff__topo,
adapt_format_read_diff__attr : adapt_format_read_diff__attr,
- }
+ };
});