Author: ygrego Date: 2015-06-08 13:33:16 +0000 (Mon, 08 Jun 2015) New Revision: 1601 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1601 Log: Addition of the new class "ApplicationCollection". Added: oipf/js/impl/model/ApplicationCollection.js Added: oipf/js/impl/model/ApplicationCollection.js =================================================================== --- oipf/js/impl/model/ApplicationCollection.js (rev 0) +++ oipf/js/impl/model/ApplicationCollection.js 2015-06-08 13:33:16 UTC (rev 1601) @@ -0,0 +1,13 @@ +/* + * 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 ApplicationCollection = Collection.extend({ + + init: function() { + this.super.init.apply(this, arguments); + } +}); +