From 01e83f18079688c8627e92e4aa19457da9601179 Mon Sep 17 00:00:00 2001 From: Surinder Kumar Date: Wed, 11 May 2016 12:11:06 +0530 Subject: [PATCH] Adding missing dependency 'underscore.string' in the 'menu.js'. --- web/pgadmin/browser/static/js/menu.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/pgadmin/browser/static/js/menu.js b/web/pgadmin/browser/static/js/menu.js index 26a48316e..73feb460d 100644 --- a/web/pgadmin/browser/static/js/menu.js +++ b/web/pgadmin/browser/static/js/menu.js @@ -1,6 +1,6 @@ define( - ['underscore', 'pgadmin', 'jquery'], -function(_, pgAdmin, $) { + ['underscore', 'underscore.string', 'pgadmin', 'jquery'], +function(_, S, pgAdmin, $) { 'use strict'; pgAdmin.Browser = pgAdmin.Browser || {};