1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 17:47:59 +01:00

Move library convenience functions to a library module.

This commit is contained in:
Doug Kearns
2009-04-02 01:02:20 +11:00
parent 1acb941148
commit 2499c84a48
4 changed files with 84 additions and 105 deletions

View File

@@ -169,6 +169,7 @@ const config = { //{{{
"bookmarks.js",
"tabs.js",
"player.js",
"library.js"
],
stop: function() {
@@ -177,11 +178,9 @@ const config = { //{{{
init: function ()
{
//Adding a mode for Player
// Adding a mode for Player
//modes.addMode("PLAYER"); // Player mode for songbird
// var artistArray = getArtists();
// TODO: support 'nrformats'? -> probably not worth it --mst
function incrementURL(count)
{
@@ -246,8 +245,8 @@ const config = { //{{{
liberator.loadModule("marks", Marks);
liberator.loadModule("quickmarks", QuickMarks);
liberator.loadModule("hints", Hints);
// Load the Player module
liberator.loadModule("player", Player);
liberator.loadModule("library", Library);
////////////////////////////////////////////////////////////////////////////////
////////////////////// STYLES //////////////////////////////////////////////////