bower jcrop
This commit is contained in:
parent
3329492766
commit
49fbd766c2
2
3rdparty
2
3rdparty
|
@ -1 +1 @@
|
||||||
Subproject commit 028a137c7199362e6387e37be8f2fddd3c012aeb
|
Subproject commit 165fadf4252843fb3015a1138cdabef66a1988bb
|
|
@ -14,6 +14,7 @@
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"handlebars": "1.3.0",
|
"handlebars": "1.3.0",
|
||||||
|
"jcrop": "~0.9.12",
|
||||||
"jquery": "~1.10.0",
|
"jquery": "~1.10.0",
|
||||||
"moment": "~2.8.3",
|
"moment": "~2.8.3",
|
||||||
"select2": "3.4.8",
|
"select2": "3.4.8",
|
||||||
|
|
|
@ -20,6 +20,15 @@ jquery/**
|
||||||
!jquery/jquery*
|
!jquery/jquery*
|
||||||
!jquery/MIT-LICENSE.txt
|
!jquery/MIT-LICENSE.txt
|
||||||
|
|
||||||
|
# jcrop
|
||||||
|
jcrop/.bower.json
|
||||||
|
jcrop/index.html
|
||||||
|
jcrop/README.md
|
||||||
|
jcrop/demos
|
||||||
|
jcrop/css/jquery.Jcrop.min.css
|
||||||
|
jcrop/js/**
|
||||||
|
!jcrop/js/jquery.Jcrop.js
|
||||||
|
|
||||||
# handlebars
|
# handlebars
|
||||||
handlebars/**
|
handlebars/**
|
||||||
!handlebars/handlebars.js
|
!handlebars/handlebars.js
|
||||||
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
Copyright (c) 2011 Tapmodo Interactive LLC,
|
||||||
|
http://github.com/tapmodo/Jcrop
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
a copy of this software and associated documentation files (the
|
||||||
|
"Software"), to deal in the Software without restriction, including
|
||||||
|
without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
|
permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be
|
||||||
|
included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||||
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||||
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||||
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 329 B |
|
@ -0,0 +1,165 @@
|
||||||
|
/* jquery.Jcrop.css v0.9.12 - MIT License */
|
||||||
|
/*
|
||||||
|
The outer-most container in a typical Jcrop instance
|
||||||
|
If you are having difficulty with formatting related to styles
|
||||||
|
on a parent element, place any fixes here or in a like selector
|
||||||
|
|
||||||
|
You can also style this element if you want to add a border, etc
|
||||||
|
A better method for styling can be seen below with .jcrop-light
|
||||||
|
(Add a class to the holder and style elements for that extended class)
|
||||||
|
*/
|
||||||
|
.jcrop-holder {
|
||||||
|
direction: ltr;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
/* Selection Border */
|
||||||
|
.jcrop-vline,
|
||||||
|
.jcrop-hline {
|
||||||
|
background: #ffffff url("Jcrop.gif");
|
||||||
|
font-size: 0;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
.jcrop-vline {
|
||||||
|
height: 100%;
|
||||||
|
width: 1px !important;
|
||||||
|
}
|
||||||
|
.jcrop-vline.right {
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
.jcrop-hline {
|
||||||
|
height: 1px !important;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.jcrop-hline.bottom {
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
/* Invisible click targets */
|
||||||
|
.jcrop-tracker {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
/* "turn off" link highlight */
|
||||||
|
-webkit-tap-highlight-color: transparent;
|
||||||
|
/* disable callout, image save panel */
|
||||||
|
-webkit-touch-callout: none;
|
||||||
|
/* disable cut copy paste */
|
||||||
|
-webkit-user-select: none;
|
||||||
|
}
|
||||||
|
/* Selection Handles */
|
||||||
|
.jcrop-handle {
|
||||||
|
background-color: #333333;
|
||||||
|
border: 1px #eeeeee solid;
|
||||||
|
width: 7px;
|
||||||
|
height: 7px;
|
||||||
|
font-size: 1px;
|
||||||
|
}
|
||||||
|
.jcrop-handle.ord-n {
|
||||||
|
left: 50%;
|
||||||
|
margin-left: -4px;
|
||||||
|
margin-top: -4px;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
.jcrop-handle.ord-s {
|
||||||
|
bottom: 0;
|
||||||
|
left: 50%;
|
||||||
|
margin-bottom: -4px;
|
||||||
|
margin-left: -4px;
|
||||||
|
}
|
||||||
|
.jcrop-handle.ord-e {
|
||||||
|
margin-right: -4px;
|
||||||
|
margin-top: -4px;
|
||||||
|
right: 0;
|
||||||
|
top: 50%;
|
||||||
|
}
|
||||||
|
.jcrop-handle.ord-w {
|
||||||
|
left: 0;
|
||||||
|
margin-left: -4px;
|
||||||
|
margin-top: -4px;
|
||||||
|
top: 50%;
|
||||||
|
}
|
||||||
|
.jcrop-handle.ord-nw {
|
||||||
|
left: 0;
|
||||||
|
margin-left: -4px;
|
||||||
|
margin-top: -4px;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
.jcrop-handle.ord-ne {
|
||||||
|
margin-right: -4px;
|
||||||
|
margin-top: -4px;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
.jcrop-handle.ord-se {
|
||||||
|
bottom: 0;
|
||||||
|
margin-bottom: -4px;
|
||||||
|
margin-right: -4px;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
.jcrop-handle.ord-sw {
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
margin-bottom: -4px;
|
||||||
|
margin-left: -4px;
|
||||||
|
}
|
||||||
|
/* Dragbars */
|
||||||
|
.jcrop-dragbar.ord-n,
|
||||||
|
.jcrop-dragbar.ord-s {
|
||||||
|
height: 7px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.jcrop-dragbar.ord-e,
|
||||||
|
.jcrop-dragbar.ord-w {
|
||||||
|
height: 100%;
|
||||||
|
width: 7px;
|
||||||
|
}
|
||||||
|
.jcrop-dragbar.ord-n {
|
||||||
|
margin-top: -4px;
|
||||||
|
}
|
||||||
|
.jcrop-dragbar.ord-s {
|
||||||
|
bottom: 0;
|
||||||
|
margin-bottom: -4px;
|
||||||
|
}
|
||||||
|
.jcrop-dragbar.ord-e {
|
||||||
|
margin-right: -4px;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
.jcrop-dragbar.ord-w {
|
||||||
|
margin-left: -4px;
|
||||||
|
}
|
||||||
|
/* The "jcrop-light" class/extension */
|
||||||
|
.jcrop-light .jcrop-vline,
|
||||||
|
.jcrop-light .jcrop-hline {
|
||||||
|
background: #ffffff;
|
||||||
|
filter: alpha(opacity=70) !important;
|
||||||
|
opacity: .70!important;
|
||||||
|
}
|
||||||
|
.jcrop-light .jcrop-handle {
|
||||||
|
-moz-border-radius: 3px;
|
||||||
|
-webkit-border-radius: 3px;
|
||||||
|
background-color: #000000;
|
||||||
|
border-color: #ffffff;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
/* The "jcrop-dark" class/extension */
|
||||||
|
.jcrop-dark .jcrop-vline,
|
||||||
|
.jcrop-dark .jcrop-hline {
|
||||||
|
background: #000000;
|
||||||
|
filter: alpha(opacity=70) !important;
|
||||||
|
opacity: 0.7 !important;
|
||||||
|
}
|
||||||
|
.jcrop-dark .jcrop-handle {
|
||||||
|
-moz-border-radius: 3px;
|
||||||
|
-webkit-border-radius: 3px;
|
||||||
|
background-color: #ffffff;
|
||||||
|
border-color: #000000;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
/* Simple macro to turn off the antlines */
|
||||||
|
.solid-line .jcrop-vline,
|
||||||
|
.solid-line .jcrop-hline {
|
||||||
|
background: #ffffff;
|
||||||
|
}
|
||||||
|
/* Fix for twitter bootstrap et al. */
|
||||||
|
.jcrop-holder img,
|
||||||
|
img.jcrop-preview {
|
||||||
|
max-width: none;
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -17,8 +17,8 @@ OC_Util::addScript( '3rdparty', 'strengthify/jquery.strengthify' );
|
||||||
OC_Util::addStyle( '3rdparty', 'strengthify/strengthify' );
|
OC_Util::addStyle( '3rdparty', 'strengthify/strengthify' );
|
||||||
\OC_Util::addScript('files', 'jquery.fileupload');
|
\OC_Util::addScript('files', 'jquery.fileupload');
|
||||||
if (\OC_Config::getValue('enable_avatars', true) === true) {
|
if (\OC_Config::getValue('enable_avatars', true) === true) {
|
||||||
\OC_Util::addScript('3rdparty/Jcrop', 'jquery.Jcrop.min');
|
\OC_Util::addVendorScript('jcrop/js/jquery.Jcrop');
|
||||||
\OC_Util::addStyle('3rdparty/Jcrop', 'jquery.Jcrop.min');
|
\OC_Util::addVendorStyle('jcrop/css/jquery.Jcrop');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Highlight navigation entry
|
// Highlight navigation entry
|
||||||
|
|
Loading…
Reference in New Issue