# videojs-settings-menu **Repository Path**: mirrors_videojs/videojs-settings-menu ## Basic Information - **Project Name**: videojs-settings-menu - **Description**: A place to incubate a new settings menu for videojs. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2026-07-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # videojs-settings-menu A plugin to create a settings menu consisting of sub menus for the video.js controlbar ## Table of Contents - [Installation](#installation) - [Usage](#usage) - [` ``` ### Browserify When using with Browserify, install videojs-settings-menu via npm and `require` the plugin as you would any other module. ```js var videojs = require('video.js'); // The actual plugin function is exported by this module, but it is also // attached to the `Player.prototype`; so, there is no need to assign it // to a variable. require('videojs-settings-menu'); var player = videojs('my-video', { /* options as above */}); ``` ### RequireJS/AMD When using with RequireJS (or another AMD library), get the script in whatever way you prefer and `require` the plugin as you normally would: ```js require(['video.js', 'videojs-settings-menu'], function(videojs) { var player = videojs('my-video', { /* options as above */}); }); ``` ## License MIT. Copyright (c) Fruitsapje <hero@streamone.nl> [videojs]: http://videojs.com/