Files
web/web_widget_slickroom/__manifest__.py
Brenton Hughes 6cbd754f51 [ADD] web_widget_slickroom: Create module
* Extend web_widget_slick widget to open web_widget_darkroom modal
  and update selected carousel image on close
* Override _slickRender method from web_widget_slick to add data
  attribute w/ record id
* Change cursor to pointer on slickroom images
* Disable features in read-only mode
  * Keep default cursor
  * Prevent modal from opening
* Add tests

[IMP] web_widget_slickroom: Make requested changes

* Use jquery .data instead of .attr for image record IDs
* Add explicit img selector when finding images by record ID
* Remove svg version of icon
2018-01-31 08:49:49 +00:00

23 lines
631 B
Python

# -*- coding: utf-8 -*-
# Copyright 2017 LasLabs Inc.
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
{
"name": "Slick Carousel Widget with DarkroomJS Image Editing",
"summary": "Provides Slick Carousel Widget with DarkroomJS image editing",
"version": "10.0.1.0.0",
"category": "Web",
"website": "https://laslabs.com/",
"author": "LasLabs, Odoo Community Association (OCA)",
"license": "LGPL-3",
"application": False,
"installable": True,
"depends": [
"web_widget_darkroom",
"web_widget_slick",
],
"data": [
"templates/assets.xml",
],
}