Author: ygrego Date: 2015-06-10 09:15:31 +0000 (Wed, 10 Jun 2015) New Revision: 1685 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1685 Log: Use of OipfUtils's statics methods. Modified: oipf/lib/js/utils/ChannelService.js oipf/lib/js/utils/EventManager.js Modified: oipf/lib/js/utils/ChannelService.js =================================================================== --- oipf/lib/js/utils/ChannelService.js 2015-06-10 09:11:38 UTC (rev 1684) +++ oipf/lib/js/utils/ChannelService.js 2015-06-10 09:15:31 UTC (rev 1685) @@ -11,7 +11,7 @@ this.channelOrigin = channelOrigin; this.channelListArray = channelList; - this.getNumber = oipf.utils.generateFourDigit.bind(null); + this.getNumber = OipfUtils.generateFourDigit.bind(null); this.channelList = new ChannelList(); this.createChannelList(); Modified: oipf/lib/js/utils/EventManager.js =================================================================== --- oipf/lib/js/utils/EventManager.js 2015-06-10 09:11:38 UTC (rev 1684) +++ oipf/lib/js/utils/EventManager.js 2015-06-10 09:15:31 UTC (rev 1685) @@ -24,7 +24,7 @@ listeners && listeners.forEach(function(listener) { console.log(">>fireEvent"); - oipf.utils.timeout(0) + OipfUtils.timeout(0) .then(listener.apply.bind(listener, target, event.detail)); });