Author: jruchaud Date: 2015-06-09 12:05:29 +0000 (Tue, 09 Jun 2015) New Revision: 1637 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1637 Log: Useless file Removed: oipf/lib/js/utils/myTest.js Deleted: oipf/lib/js/utils/myTest.js =================================================================== --- oipf/lib/js/utils/myTest.js 2015-06-09 12:04:48 UTC (rev 1636) +++ oipf/lib/js/utils/myTest.js 2015-06-09 12:05:29 UTC (rev 1637) @@ -1,34 +0,0 @@ -/* - * 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 myTest = (function () { - - var b = 1; - var m1 =function() { - return this.c1; - }; - this.c1 = 99; - - return function() { - this.logB = function() { - console.log(m1()); - }; - - /* - * c2 vaudrait c1 car this correspond à window, ce n'est pas l'effet - * attendu. - */ - this.c2 = c1; - -// this.b = function() { -// return b; -// }; - - this.b = b; - }; - -})(); -