Author: mamsellem
Date: Tue Dec 17 00:55:30 2013
New Revision: 1551432
URL: http://svn.apache.org/r1551432
Log:
IN PROGRESS - FLEX-33907 Showcase section in web site
cleanup
added margins around preview images
Modified:
flex/site/trunk/content/css/style.css
flex/site/trunk/content/js/showcase.js
Modified: flex/site/trunk/content/css/style.css
URL:
http://svn.apache.org/viewvc/flex/site/trunk/content/css/style.css?rev=1551432&r1=1551431&r2=1551432&view=diff
==============================================================================
--- flex/site/trunk/content/css/style.css (original)
+++ flex/site/trunk/content/css/style.css Tue Dec 17 00:55:30 2013
@@ -1274,7 +1274,7 @@ or wrap each row of columns in a <div cl
}
/* showcase*/
-a.showcase {
+img.showcase {
margin: 2 auto;
}
Modified: flex/site/trunk/content/js/showcase.js
URL:
http://svn.apache.org/viewvc/flex/site/trunk/content/js/showcase.js?rev=1551432&r1=1551431&r2=1551432&view=diff
==============================================================================
--- flex/site/trunk/content/js/showcase.js (original)
+++ flex/site/trunk/content/js/showcase.js Tue Dec 17 00:55:30 2013
@@ -9,22 +9,6 @@
* imgDir: subdirectory for images
* images: Array of file names
* */
- /*
- <div class='headline'><h4>%TITLE%</h4></div>
- <ul class="arrow_list">
- <li> Summary: %SUMMARY% </li>
- <li>Author: %AUTHOR% </li>
- <li> Web site: <A href="%WEBSITE%" target="_blank">%WEBSITE%</A></li>
- <li> Videos: <A href="%VIDEO%" target="_blank">%VIDEO%</A> </li>
- </ul>
- <div><a class="gallery" rel="grp1"
href="images/showcase/full/bCommunities/Communications Inbox.jpg"
title="Communications Inbox">
- <img src="images/showcase/prev/bCommunities/Communications Inbox.jpg"/>
- </a>
- <a class="gallery" rel="grp1"
href="images/showcase/full/bCommunities/Directory - Company Level.jpg"
title="Directory - Company Level"></a>
- <a class="gallery" rel="grp1"
href="images/showcase/full/bCommunities/Project Setup View.jpg" title="Project
Setup View"></a>
- </div>
-
- */
function addShowcaseEntry( props) {
var i;
@@ -67,15 +51,30 @@
}
-/* init entries **/
-$(document).ready(function () {
+/* List of showcase entries, in alphabetical order
+added when document is ready
+ * **/
+
+/* Template for new entry:
+ addShowcaseEntry({
+ title: "",
+ description: "" ,
+ author: "",
+ website: "",
+ links: [ "", "" ],
+ imgDir: "",
+ images: [ "" ]
+ });
+ */
+
+ $(document).ready(function () {
$("a.gallery").fancybox({ cyclic: false});
/* add showcase entries when document is loaded */
addShowcaseEntry({
title: 'bCommunities - Secure B2B Collaboration',
- description: "We've created bCommunities, a disruptively efficient
online platform that enables businesses to powerfully"+
+ description: "A disruptively efficient online platform that enables
businesses to powerfully"+
"and securely interconnect their operations with their clients and
suppliers in minutes. "+
"Features silo-bursting project management, communications, CRM and
microblogging while fostering best practices and accountability.",
author: "Dan Samper",
@@ -105,7 +104,7 @@ $(document).ready(function () {
images: [ "1.png", "2.png", "3.png"]
});
- addShowcaseEntry({
+ /* addShowcaseEntry({
title: "Online Designer Tool",
description: "",
author: "",
@@ -113,7 +112,7 @@ $(document).ready(function () {
imgDir: "",
images: [ ]
});
-
+*/
addShowcaseEntry({
title: 'TrafficLIVE AIR Application',
description: "TrafficLIVE is a comprehensive creative business
management system that provides visibility into resources, work and finances
all in one place. " +
@@ -133,17 +132,5 @@ $(document).ready(function () {
images: [ "feature-graphic.png","screenshot01.png" ]
});
- /* Template for new entry
- addShowcaseEntry({
- title: "",
- description: "" ,
- author: "",
- website: "",
- video: "",
- imgDir: "",
- images: [ "" ]
- });
- */
-
});