diff options
author | portix <none@none> | 2013-03-05 11:54:41 +0100 |
---|---|---|
committer | portix <none@none> | 2013-03-05 11:54:41 +0100 |
commit | 7762d2b27b0cbc8ad5aa6e7cdf2601f1671321e6 (patch) | |
tree | 4d57ee80239908e03b0902c9fac4aeef61c48a7f /extensions/requestpolicy | |
parent | 5014ba8e7a6f43feb8a419d747b156df0d5838b4 (diff) | |
download | dwb-7762d2b27b0cbc8ad5aa6e7cdf2601f1671321e6.zip |
Fixing formfiller export functions; shorter implementation of util.[un]camelize
Diffstat (limited to 'extensions/requestpolicy')
-rw-r--r-- | extensions/requestpolicy | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/extensions/requestpolicy b/extensions/requestpolicy index 62e1d81e..4d0a66f3 100644 --- a/extensions/requestpolicy +++ b/extensions/requestpolicy @@ -84,8 +84,6 @@ Block requests from thirdparty domains permanently or just for a session, whitelisting support INFO>*/ -var me = "requestpolicy"; - var defaultConfig = { //<DEFAULT_CONFIG // path to a whitelist @@ -431,7 +429,7 @@ function disconnect() } }); }//}}} -return { +var requestpolicy = { defaultConfig : defaultConfig, init : function(c) { @@ -464,4 +462,5 @@ return { unbind("requestpolicyUnblockAll"); } }; +return requestpolicy; // vim: set ft=javascript: |