Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
NielsHolt committed May 25, 2024
1 parent 18844d7 commit 7860c40
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fcoo-maps",
"version": "1.34.1",
"version": "1.34.2",
"homepage": "https://github.com/fcoo/fcoo-maps",
"authors": [
"Niels Holt"
Expand Down
12 changes: 7 additions & 5 deletions demo/bower_components.js
Original file line number Diff line number Diff line change
Expand Up @@ -112079,15 +112079,17 @@ Objects and methods to set up Mmenu via $.bsMmenu
favoriteSetting.load( favoriteSettingId, favoritesSetting_afterLoad );
}

options = $.extend(true, {}, {
inclBar : true,
barCloseAll: true,

favorites: options.favorites ? {
if (options.favorites === true)
options.favorites = {
get : function(id){ return favorite_get(menuId, id); },
add : function(id){ favorite_set(menuId, id, true); },
remove: function(id){ favorite_set(menuId, id, false); },
} : null
};

options = $.extend(true, {}, {
inclBar : true,
barCloseAll: true,
}, options);


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fcoo-maps",
"version": "1.34.1",
"version": "1.34.2",
"homepage": "https://github.com/FCOO/fcoo-maps",
"author": "Niels Holt [email protected]",
"description": "package.json is only use for building the package. see bower.json for more info",
Expand Down

0 comments on commit 7860c40

Please sign in to comment.