Layout folder move to admin and frontend
This commit is contained in:
2
www/frontend/layout/cache/.gitignore
vendored
Normal file
2
www/frontend/layout/cache/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
29
www/frontend/layout/css/frontend.css
Normal file
29
www/frontend/layout/css/frontend.css
Normal file
@@ -0,0 +1,29 @@
|
||||
.debug_message {
|
||||
border-top: 1px solid #a4a4a4;
|
||||
color: #a4a4a4;
|
||||
font-size: 8px;
|
||||
}
|
||||
|
||||
/* NEW VERSION with CSS key frame animation */
|
||||
.progress {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
background: rgba(255, 255, 255, 0.6);
|
||||
border: 20px solid rgba(255, 255, 255 ,0.25);
|
||||
border-left-color: rgba(3, 155, 229 ,1);
|
||||
border-top-color: rgba(3, 155, 229 ,1);
|
||||
border-radius: 50%;
|
||||
display: inline-block;
|
||||
animation: rotate 600ms infinite linear;
|
||||
/* align */
|
||||
left: 0;
|
||||
top: 0;
|
||||
position: absolute;
|
||||
z-index: 100;
|
||||
}
|
||||
/* Animation for above progress */
|
||||
@keyframes rotate {
|
||||
to {
|
||||
transform: rotate(1turn)
|
||||
}
|
||||
}
|
||||
1
www/frontend/layout/javascript/debug.js
Symbolic link
1
www/frontend/layout/javascript/debug.js
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../admin/layout/javascript/debug.js
|
||||
1
www/frontend/layout/javascript/fineuploader
Symbolic link
1
www/frontend/layout/javascript/fineuploader
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../admin/layout/javascript/fineuploader/
|
||||
1
www/frontend/layout/javascript/firebug.js
Symbolic link
1
www/frontend/layout/javascript/firebug.js
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../admin/layout/javascript/firebug.js
|
||||
25
www/frontend/layout/javascript/frontend.js
Normal file
25
www/frontend/layout/javascript/frontend.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/*
|
||||
* AUTHOR: Clemens Schwaighofer
|
||||
* DATE: 2008/12/29
|
||||
* DESC: Javascript functions for the Catalogue frontend
|
||||
*/
|
||||
|
||||
// METHOD: SwitchImage
|
||||
// PARAMS: front/back -> what image to show
|
||||
// RETURN: none
|
||||
// DESC: ajax call to switch the main image in the detail view
|
||||
function SwitchImage(image) {
|
||||
if (image != 'front' || image != 'back') {
|
||||
image = 'front';
|
||||
}
|
||||
// disable / enable the href for the other side
|
||||
x_ajax_afSwitchImage(image, OutputSwitchImage);
|
||||
}
|
||||
|
||||
// METHOD: OutputSwitchImage
|
||||
// PARAMS: data -> the image full path for the new image
|
||||
// RETURN: none
|
||||
// DESC: replace the image in the product detail with the back image
|
||||
function OutputSwitchImage(data) {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user