Sha256: 32b8de3c1a4a48f7a03bcfa508a5e97f1e96ae089edd6260bb0d2615e3429963
Contents?: true
Size: 844 Bytes
Versions: 1
Compression:
Stored size: 844 Bytes
Contents
/*! * Aloha Editor * Author & Copyright (c) 2011 Gentics Software GmbH * aloha-sales@gentics.com * Licensed unter the terms of http://www.aloha-editor.com/license.html */ /** * Provides flag icons that are shared among various plugins. Plugins that * rely on the icon images provided by this plugin should require this plugin * to ensure that the images are indeed there. * * This plugin's require module exports an object containing a single property: * the url of the plugins. This url can be used as the path to * programmatically determine the absolute urls of the icon images. * * USAGE: * require('flag-icons/flag-icons-plugin', function (FlagsIcons) { * // ... * FlagIcons.path + languageCode; * // ... * }); */ define( function () { 'use strict' return { path: Aloha.getPluginUrl( 'flag-icons' ) }; } );
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
free_text-0.0.3 | app/assets/javascripts/aloha-0.10.0/plugins/extra/flag-icons/lib/flag-icons-plugin.js |