Author: ygrego Date: 2015-04-27 14:38:45 +0000 (Mon, 27 Apr 2015) New Revision: 1264 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1264 Log: Implementation of "Bookmark". Added: oipf/js/impl/model/Bookmark.js Added: oipf/js/impl/model/Bookmark.js =================================================================== --- oipf/js/impl/model/Bookmark.js (rev 0) +++ oipf/js/impl/model/Bookmark.js 2015-04-27 14:38:45 UTC (rev 1264) @@ -0,0 +1,30 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + +var Bookmark = Class.extend({ + + /* + * Description: + * The time at which the bookmark is set, in seconds from + * the start of the content item. + */ + time: null, + + /* + * Description: + * The name of the bookmark. + * + */ + name: null, + + init: function(time, name) { + this.time = time; + this.name = name; + } + +}); + +
participants (1)
-
ygregoï¼ users.nuiton.org