From 967f8c9151590209f7b62ad5ba8958c79401f01f Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Thu, 28 Jan 2016 11:25:44 -0800 Subject: [PATCH] [Build] Update remaining library references --- .../commonUI/browse/src/windowing/FullscreenAction.js | 2 +- .../features/clock/src/controllers/TimerFormatter.js | 10 +--------- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/platform/commonUI/browse/src/windowing/FullscreenAction.js b/platform/commonUI/browse/src/windowing/FullscreenAction.js index 82d92fbd40..5de4336acd 100644 --- a/platform/commonUI/browse/src/windowing/FullscreenAction.js +++ b/platform/commonUI/browse/src/windowing/FullscreenAction.js @@ -25,7 +25,7 @@ * Module defining FullscreenAction. Created by vwoeltje on 11/18/14. */ define( - ["../../lib/screenfull.min"], + ["screenfull"], function () { "use strict"; diff --git a/platform/features/clock/src/controllers/TimerFormatter.js b/platform/features/clock/src/controllers/TimerFormatter.js index 3a694090b3..7a2b2da44b 100644 --- a/platform/features/clock/src/controllers/TimerFormatter.js +++ b/platform/features/clock/src/controllers/TimerFormatter.js @@ -21,16 +21,8 @@ *****************************************************************************/ /*global define,requirejs*/ -requirejs.config({ - shim: { - 'platform/features/clock/lib/moment-duration-format': { - deps: [ 'moment' ] - } - } -}); - define( - ['moment', '../../lib/moment-duration-format'], + ['moment', 'moment-duration-format'], function (moment) { "use strict";