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 #33 from himedlooff/gh-pages
Browse files Browse the repository at this point in the history
Updated npm and bower deps and recompiled, updated docs template
  • Loading branch information
ascott1 committed Dec 4, 2014
2 parents 652f00d + 6e1bdf7 commit 0ffa6e0
Show file tree
Hide file tree
Showing 17 changed files with 4,133 additions and 1,214 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@ All notable changes to this project will be documented in this file.
We follow the [Semantic Versioning 2.0.0](http://semver.org/) format.


## 1.3.1 - 2014-11-02

### Added
- Nothing.

### Deprecated
- Nothing.

### Removed
- Nothing.

### Fixed
- Updated npm and bower deps and recompiled. This updates the docs template.


## 1.3.0 - 2014-09-09

### Added
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-buttons",
"version": "1.3.0",
"version": "1.3.1",
"description": "Button styles including default, secondary, destructive, disabled, super, and compound buttons, button links, buttons with icons, and button groups for Capital Framework.",
"keywords": [
"capital-framework",
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 8]>
<link rel="stylesheet" type="text/css" href="static/css/main.lt-ie8.min.css"><![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="less-notes">
Expand Down
Loading

0 comments on commit 0ffa6e0

Please sign in to comment.