From d5691676debc1b1bbd1e97abb8f80bd7c4182584 Mon Sep 17 00:00:00 2001 From: Marc Jansen Date: Fri, 2 Sep 2016 11:04:42 +0200 Subject: [PATCH] Require ol in ol.array --- src/ol/array.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ol/array.js b/src/ol/array.js index 356b578112..be51a83c2c 100644 --- a/src/ol/array.js +++ b/src/ol/array.js @@ -1,5 +1,7 @@ goog.provide('ol.array'); +goog.require('ol'); + /** * Performs a binary search on the provided sorted list and returns the index of the item if found. If it can't be found it'll return -1.