Skip to content

Commit

Permalink
v0.2.0b8.20170607 - BETA M2 - Movin' on up
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Caramaliu committed Jun 7, 2017
1 parent 2748b16 commit 541c7fd
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 5 deletions.
9 changes: 8 additions & 1 deletion dashboard/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,14 @@ span.s-b { font-weight: bold; }
span.s-i { font-style: italic; }
span.s-u { text-decoration: underline; }
span.s-s { text-decoration: line-through; }
span.s-s { white-space: pre-wrap; }
span.s-pre { white-space: pre-wrap; }
span.s-flash { animation: s-flash 1s steps(2) infinite; }

@-webkit-keyframes s-flash { to { opacity: 0; } } }
@-moz-keyframes s-flash { to { opacity: 0; } } }
@-ms-keyframes s-flash { to { opacity: 0; } } }
@-o-keyframes s-flash { to { opacity: 0; } } }
@keyframes s-flash { to { opacity: 0; } } }


@media only screen and (max-width: 767px) {
Expand Down
4 changes: 2 additions & 2 deletions dashboard/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ config.factory('dataService', ['$http', '$location', '$rootScope', '$window', '$
writeObject('instance', instance.id, _dk);
if ((instance.coreVersion) && (version() != instance.coreVersion)) {
if (version() > instance.coreVersion) {
status('A newer SmartApp version (' + version() + ') is available, please update and publish the all the webCoRE SmartApps in the SmartThings IDE.');
status('A newer SmartApp version (' + version() + ') is available, please update and publish all the webCoRE SmartApps in the SmartThings IDE.');
} else {
status('A newer UI version (' + instance.coreVersion + ') is available, please hard reload this web page to get the newest version.');
}
Expand Down Expand Up @@ -1462,4 +1462,4 @@ if (document.selection) {
document.execCommand("Copy");
}}

version = function() { return 'v0.1.0b7.20170603'; };
version = function() { return 'v0.2.0b8.20170607'; };
1 change: 1 addition & 0 deletions dashboard/js/modules/dashboard.module.js
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ config.controller('dashboard', ['$scope', '$rootScope', 'dataService', '$timeout
case 'i': className += 's-i '; break;
case 's': className += 's-s '; break;
case 'pre': className += 's-pre '; break;
case 'flash': className += 's-flash '; break;
default: color = cls[x].replace(/[^#0-9a-z]/gi, '');
}
}
Expand Down
1 change: 1 addition & 0 deletions dashboard/js/modules/piston.module.js
Original file line number Diff line number Diff line change
Expand Up @@ -3812,6 +3812,7 @@ config.controller('piston', ['$scope', '$rootScope', 'dataService', '$timeout',
case 'i': className += 's-i '; break;
case 's': className += 's-s '; break;
case 'pre': className += 's-pre '; break;
case 'flash': className += 's-flash '; break;
default: color = cls[x].replace(/[^#0-9a-z]/gi, '');
}
}
Expand Down
2 changes: 1 addition & 1 deletion dist/css/webCoRE.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/webCoRE.min.js

Large diffs are not rendered by default.

0 comments on commit 541c7fd

Please sign in to comment.