Skip to content
This repository has been archived by the owner on Jan 31, 2018. It is now read-only.

Commit

Permalink
Merge pull request #41 from ascott1/gh-pages
Browse files Browse the repository at this point in the history
Update cf-component-demo dev dependency to 0.9.0
  • Loading branch information
himedlooff committed Dec 5, 2014
2 parents a8214a9 + bb9979f commit a7054ef
Show file tree
Hide file tree
Showing 11 changed files with 23,253 additions and 4,183 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
All notable changes to this project will be documented in this file.
We follow the [Semantic Versioning 2.0.0](http://semver.org/) format.

## 0.6.2 - 2014-12-05

### Added
- Update cf-component-demo dev dependency to 0.9.0

### Deprecated
- Nothing.

### Removed
- Nothing.

### Fixed
- Nothing.


## 0.6.1 - 2014-10-28

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cf-expandables",
"version": "0.6.1",
"version": "0.6.2",
"description": "Standard expandable (show/hide) component for Capital Framework.",
"keywords": ["capital-framework", "capital", "expandables", "jquery", "js", "less"],
"authors": [
Expand Down
14 changes: 10 additions & 4 deletions demo/index.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<!DOCTYPE html>
<!--[if lt IE 7]><html class="lt-ie9 lt-ie8 lt-ie7"><![endif]-->
<!--[if IE 7]><html class="lt-ie9 lt-ie8"><![endif]-->
<!--[if IE 8]><html class="lt-ie9"><![endif]-->
<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7"><![endif]-->
<!--[if IE 7]><html class="no-js lt-ie9 lt-ie8"><![endif]-->
<!--[if IE 8]><html class="no-js lt-ie9"><![endif]-->

<!--[if gt IE 8]><!-->
<html lang="en">
<html lang="en" class="no-js">
<!-- <![endif]-->
<head>
<meta charset="utf-8">
Expand All @@ -14,6 +14,12 @@
<link rel="stylesheet" type="text/css" href="static/css/main.css">
<!--[if lt IE 9]>
<script src="static/demo/html5shiv-printshiv.js"></script><![endif]-->
<script>
// Confirm availability of JS and remove no-js class from html
var docElement = document.documentElement;
docElement.className = docElement.className.replace(/(^|\s)no-js(\s|$)/, '$1$2');

</script>
</head>
<body style="padding:4px;">
<div id="recommended-expandable-pattern">
Expand Down
Loading

0 comments on commit a7054ef

Please sign in to comment.