diff options
author | trapezoid | 2008-04-03 01:59:32 +0000 |
---|---|---|
committer | trapezoid | 2008-04-03 01:59:32 +0000 |
commit | 31ed477450f55042d3e88e13b4a44904ac07668b (patch) | |
tree | 5b562dc15f34f64fbc557503d09a7fd540ec0ffb /ldrize_cooperation.js | |
parent | bf224a143dbef3f1ec586c330eae587e43162320 (diff) | |
download | vimperator-plugins-31ed477450f55042d3e88e13b4a44904ac07668b.tar.bz2 |
lang/javascript/vimperator-plugins/trunk/ldrize_cooperation.js, ldrize_cooperation_fetch_flv.js: add loading plugins future
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@8715 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'ldrize_cooperation.js')
-rw-r--r-- | ldrize_cooperation.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/ldrize_cooperation.js b/ldrize_cooperation.js index 9857f65..6ec7952 100644 --- a/ldrize_cooperation.js +++ b/ldrize_cooperation.js @@ -1,5 +1,5 @@ // Vimperator plugin: 'Cooperation LDRize Mappings'
-// Version: 0.13
+// Version: 0.14
// Last Change: 03-Apr-2008. Jan 2008
// License: Creative Commons
// Maintainer: Trapezoid <trapezoid.g@gmail.com> - http://unsigned.g.hatena.ne.jp/Trapezoid
@@ -102,6 +102,13 @@ this.initLDRizeCaptureKeys(this.captureMappings);
this.initLDRizeCooperationFuture();
this.setupStatusbarPanel();
+
+ if(liberator.plugins.LDRizeCooperationPlugins != undefined){
+ liberator.plugins.LDRizeCooperationPlugins.forEach(function(func){
+ func.apply(self,arguments);
+ });
+ delete liberator.plugins.LDRizeCooperationPlugins;
+ }
},
setupStatusbarPanel: function(){
var self = this;
|