~vono22/cookiekeeper/1.9.0

« back to all changes in this revision

Viewing changes to cookiekeeper/kmeleon/cookiekeeper.kmm

  • Committer: Yvon TANGUY
  • Date: 2014-04-09 19:37:40 UTC
  • Revision ID: vono@vono.zsh.jp-20140409193740-1cqp6j5bgei4g91n
Fix #1305252 : Regression: preference extensions.cookiekeeper.version not set

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# CookieKeeper - a Mozilla add-on
2
 
# (c) 2013-2016 Yvon TANGUY
3
 
#
4
 
# ***** BEGIN LICENSE BLOCK **********************************************
5
 
#
6
 
#  This Source Code Form is subject to the terms of the Mozilla Public
7
 
#  License, v. 2.0. If a copy of the MPL was not distributed with this
8
 
#  file, You can obtain one at http://mozilla.org/MPL/2.0/.
9
 
#
10
 
#  ***** END LICENSE BLOCK **********************************************
11
 
#
12
 
# K-Meleon macro
13
 
# It's the only way I found to perform the shutdown() code of CookieKeeper.
14
 
# This solution is obviously weird/bad/dirty/[add your word here]
15
 
# The CookieKeeper javascript code listen for a change of the preference
16
 
# "cookiekeeper.kmeleon.exit". When toggled, the shutdown part is executed.
17
 
#
18
 
 
19
 
runShutdown {
20
 
  togglepref(BOOL, "cookiekeeper.kmeleon.exit", true);
21
 
}
22
 
 
23
 
$OnQuit=$OnQuit."runShutdown;";