diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-10-02 12:34:28 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-10-02 12:34:28 +0300 |
commit | 55841c374c2e10e92428037fcdd713acc1908c03 (patch) | |
tree | db458ed21d71c9b4ecf593b77f398212bd58f3d4 /WebContent/VAADIN | |
parent | 97378c9c2ff774452c8d324fd28935fa910a1681 (diff) | |
download | vaadin-framework-55841c374c2e10e92428037fcdd713acc1908c03.tar.gz vaadin-framework-55841c374c2e10e92428037fcdd713acc1908c03.zip |
Remove default bootstrap parameter support (#9824)
Also remove the code that used to set the pathInfo parameter which is
never used.
Change-Id: I0ec7cc8453766bccf9527bfcf5e78411364da5f0
Diffstat (limited to 'WebContent/VAADIN')
-rw-r--r-- | WebContent/VAADIN/vaadinBootstrap.js | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/WebContent/VAADIN/vaadinBootstrap.js b/WebContent/VAADIN/vaadinBootstrap.js index c6a7b7ed5d..fc1de31bc8 100644 --- a/WebContent/VAADIN/vaadinBootstrap.js +++ b/WebContent/VAADIN/vaadinBootstrap.js @@ -1,5 +1,4 @@ (function() { - var defaults; var apps = {}; var themesLoaded = {}; var widgetsets = {}; @@ -60,14 +59,6 @@ }; window.vaadin = window.vaadin || { - setDefaults: function(d) { - if (defaults) { - log("Ignoring new defaults as defaults have already been loaded"); - return; - } - log("Got defaults", d); - defaults = d; - }, initApplication: function(appId, config) { if (apps[appId]) { throw "Application " + appId + " already initialized"; @@ -83,9 +74,6 @@ var getConfig = function(name) { var value = config[name]; - if (value === undefined) { - value = defaults[name]; - } return value; }; |