Author: dmagda
Date: Wed Nov 1 22:04:25 2017
New Revision: 1814006
URL: http://svn.apache.org/viewvc?rev=1814006&view=rev
Log:
updated screencasts
Modified:
ignite/site/trunk/blogs.html
ignite/site/trunk/css/all.css
ignite/site/trunk/includes/scripts.html
ignite/site/trunk/index.html
ignite/site/trunk/screencasts.html
ignite/site/trunk/scss/ignite.scss
Modified: ignite/site/trunk/blogs.html
URL:
http://svn.apache.org/viewvc/ignite/site/trunk/blogs.html?rev=1814006&r1=1814005&r2=1814006&view=diff
==============================================================================
Binary files - no diff available.
Modified: ignite/site/trunk/css/all.css
URL:
http://svn.apache.org/viewvc/ignite/site/trunk/css/all.css?rev=1814006&r1=1814005&r2=1814006&view=diff
==============================================================================
--- ignite/site/trunk/css/all.css (original)
+++ ignite/site/trunk/css/all.css Wed Nov 1 22:04:25 2017
@@ -8528,6 +8528,8 @@ section.page-subsection {
@media (max-width: 992px) {
.screencast-center {
text-align: center;
+ padding-left: 0;
+ padding-right: 0;
}
}
@@ -9216,6 +9218,7 @@ a.timeline-Tweet-text {
@media (max-width: 767px) {
.event-title {
width: 270px;
+ margin-top: 10px;
margin-bottom: 10px;
top: -3px;
}
Modified: ignite/site/trunk/includes/scripts.html
URL:
http://svn.apache.org/viewvc/ignite/site/trunk/includes/scripts.html?rev=1814006&r1=1814005&r2=1814006&view=diff
==============================================================================
--- ignite/site/trunk/includes/scripts.html (original)
+++ ignite/site/trunk/includes/scripts.html Wed Nov 1 22:04:25 2017
@@ -132,6 +132,7 @@ $(document).ready(function() {
$(document).ready(function(){
/* Get iframe src attribute value i.e. YouTube video url
and store it in a variable */
+ var sqldbUrl = $("#sql-db").attr('src');
var sqlUrl = $("#sql").attr('src');
var dataGridUrl = $("#data-grid").attr('src');
var clusteringUrl = $("#clustering").attr('src');
@@ -140,7 +141,11 @@ $(document).ready(function(){
var webconsoleSqlUrl = $("#webconsole-sql").attr('src');
/* Assign empty url value to the iframe src attribute when
- modal hide, which stop the video playing */
+ modal hide, which will stop the video playing */
+ $("#sql-db-modal").on('hide.bs.modal', function(){
+ $("#sql-db").attr('src', '');
+ });
+
$("#sql-modal").on('hide.bs.modal', function(){
$("#sql").attr('src', '');
});
@@ -156,15 +161,21 @@ $(document).ready(function(){
$("#database-import-modal").on('hide.bs.modal', function(){
$("#database-import").attr('src', '');
});
+
$("#data-loading-modal").on('hide.bs.modal', function(){
$("#data-loading").attr('src', '');
});
+
$("#webconsole-sql-modal").on('hide.bs.modal', function(){
$("#webconsole-sql").attr('src', '');
});
/* Assign the initially stored url back to the iframe src
attribute when modal is displayed again */
+ $("#sql-db-modal").on('show.bs.modal', function(){
+ $("#sql-db").attr('src', sqldbUrl);
+ });
+
$("#sql-modal").on('show.bs.modal', function(){
$("#sql").attr('src', sqlUrl);
});
@@ -180,9 +191,11 @@ $(document).ready(function(){
$("#database-import-modal").on('show.bs.modal', function(){
$("#database-import").attr('src', databaseImportUrl);
});
+
$("#data-loading-modal").on('show.bs.modal', function(){
$("#data-loading").attr('src', dataLoadingUrl);
});
+
$("#webconsole-sql-modal").on('show.bs.modal', function(){
$("#webconsole-sql").attr('src', webconsoleSqlUrl);
});
Modified: ignite/site/trunk/index.html
URL:
http://svn.apache.org/viewvc/ignite/site/trunk/index.html?rev=1814006&r1=1814005&r2=1814006&view=diff
==============================================================================
Binary files - no diff available.
Modified: ignite/site/trunk/screencasts.html
URL:
http://svn.apache.org/viewvc/ignite/site/trunk/screencasts.html?rev=1814006&r1=1814005&r2=1814006&view=diff
==============================================================================
Binary files - no diff available.
Modified: ignite/site/trunk/scss/ignite.scss
URL:
http://svn.apache.org/viewvc/ignite/site/trunk/scss/ignite.scss?rev=1814006&r1=1814005&r2=1814006&view=diff
==============================================================================
--- ignite/site/trunk/scss/ignite.scss (original)
+++ ignite/site/trunk/scss/ignite.scss Wed Nov 1 22:04:25 2017
@@ -1009,6 +1009,8 @@ section.page-subsection {
@media (max-width: $tablet) {
text-align: center;
+ padding-left: 0;
+ padding-right: 0;
}
}
@@ -1759,6 +1761,7 @@ a.timeline-Tweet-text {
@media(max-width: $mobile) {
width: 270px;
+ margin-top: 10px;
margin-bottom: 10px;
top: -3px;
}