Commit a7928fc3 authored by Randall Leeds's avatar Randall Leeds

update annotator to 1.2.6-dev-939cdee

fixes #328
parent 7ce59911
/* /*
** Annotator 1.2.5-dev-5a5e03a ** Annotator 1.2.6-dev-939cdee
** https://github.com/okfn/annotator/ ** https://github.com/okfn/annotator/
** **
** Copyright 2012 Aron Carroll, Rufus Pollock, and Nick Stenning. ** Copyright 2012 Aron Carroll, Rufus Pollock, and Nick Stenning.
** Dual licensed under the MIT and GPLv3 licenses. ** Dual licensed under the MIT and GPLv3 licenses.
** https://github.com/okfn/annotator/blob/master/LICENSE ** https://github.com/okfn/annotator/blob/master/LICENSE
** **
** Built at: 2013-02-25 17:23:26Z ** Built at: 2013-04-10 07:38:34Z
*/ */
(function() { (function() {
......
/* /*
** Annotator 1.2.6-dev-d9ed1c1 ** Annotator 1.2.6-dev-939cdee
** https://github.com/okfn/annotator/ ** https://github.com/okfn/annotator/
** **
** Copyright 2012 Aron Carroll, Rufus Pollock, and Nick Stenning. ** Copyright 2012 Aron Carroll, Rufus Pollock, and Nick Stenning.
** Dual licensed under the MIT and GPLv3 licenses. ** Dual licensed under the MIT and GPLv3 licenses.
** https://github.com/okfn/annotator/blob/master/LICENSE ** https://github.com/okfn/annotator/blob/master/LICENSE
** **
** Built at: 2013-04-10 07:08:00Z ** Built at: 2013-04-10 07:38:29Z
*/ */
(function() { (function() {
......
/* /*
** Annotator 1.2.5-dev-5a5e03a ** Annotator 1.2.6-dev-939cdee
** https://github.com/okfn/annotator/ ** https://github.com/okfn/annotator/
** **
** Copyright 2012 Aron Carroll, Rufus Pollock, and Nick Stenning. ** Copyright 2012 Aron Carroll, Rufus Pollock, and Nick Stenning.
** Dual licensed under the MIT and GPLv3 licenses. ** Dual licensed under the MIT and GPLv3 licenses.
** https://github.com/okfn/annotator/blob/master/LICENSE ** https://github.com/okfn/annotator/blob/master/LICENSE
** **
** Built at: 2013-02-25 17:23:22Z ** Built at: 2013-04-10 07:38:36Z
*/ */
(function() { (function() {
......
/* /*
** Annotator 1.2.6-dev-383514e ** Annotator 1.2.6-dev-939cdee
** https://github.com/okfn/annotator/ ** https://github.com/okfn/annotator/
** **
** Copyright 2012 Aron Carroll, Rufus Pollock, and Nick Stenning. ** Copyright 2012 Aron Carroll, Rufus Pollock, and Nick Stenning.
** Dual licensed under the MIT and GPLv3 licenses. ** Dual licensed under the MIT and GPLv3 licenses.
** https://github.com/okfn/annotator/blob/master/LICENSE ** https://github.com/okfn/annotator/blob/master/LICENSE
** **
** Built at: 2013-04-09 22:05:51Z ** Built at: 2013-04-10 07:38:36Z
*/ */
(function() { (function() {
...@@ -120,7 +120,7 @@ ...@@ -120,7 +120,7 @@
Store.prototype._onLoadAnnotations = function(data) { Store.prototype._onLoadAnnotations = function(data) {
if (data == null) data = []; if (data == null) data = [];
this.annotations = data; this.annotations = this.annotations.concat(data);
return this.annotator.loadAnnotations(data.slice()); return this.annotator.loadAnnotations(data.slice());
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment