Skip to content

Commit

Permalink
adding eme assets
Browse files Browse the repository at this point in the history
  • Loading branch information
ZRogerson committed Aug 22, 2013
1 parent b3c0c97 commit c72d444
Show file tree
Hide file tree
Showing 26 changed files with 156 additions and 583 deletions.
3 changes: 0 additions & 3 deletions patterns/blockquote.html

This file was deleted.

3 changes: 0 additions & 3 deletions patterns/feedback-error.html

This file was deleted.

3 changes: 0 additions & 3 deletions patterns/feedback.html

This file was deleted.

3 changes: 0 additions & 3 deletions patterns/form-buttons.html

This file was deleted.

1 change: 0 additions & 1 deletion patterns/form-checkbox.html

This file was deleted.

2 changes: 0 additions & 2 deletions patterns/form-email.html

This file was deleted.

2 changes: 0 additions & 2 deletions patterns/form-number.html

This file was deleted.

3 changes: 0 additions & 3 deletions patterns/form-select.html

This file was deleted.

2 changes: 0 additions & 2 deletions patterns/form-text.html

This file was deleted.

2 changes: 0 additions & 2 deletions patterns/form-textarea.html

This file was deleted.

2 changes: 0 additions & 2 deletions patterns/form-url.html

This file was deleted.

1 change: 0 additions & 1 deletion patterns/heading-1.html

This file was deleted.

1 change: 0 additions & 1 deletion patterns/heading-2.html

This file was deleted.

1 change: 0 additions & 1 deletion patterns/heading-3.html

This file was deleted.

1 change: 0 additions & 1 deletion patterns/heading-4.html

This file was deleted.

1 change: 0 additions & 1 deletion patterns/heading-5.html

This file was deleted.

1 change: 0 additions & 1 deletion patterns/heading-6.html

This file was deleted.

5 changes: 0 additions & 5 deletions patterns/list-ordered.html

This file was deleted.

5 changes: 0 additions & 5 deletions patterns/list-unordered.html

This file was deleted.

12 changes: 0 additions & 12 deletions patterns/pagination-first.html

This file was deleted.

12 changes: 0 additions & 12 deletions patterns/pagination-last.html

This file was deleted.

12 changes: 0 additions & 12 deletions patterns/pagination.html

This file was deleted.

1 change: 0 additions & 1 deletion patterns/text.html

This file was deleted.

14 changes: 14 additions & 0 deletions public/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
$(document).ready(function(){
var links = $('#pattern-nav').find('li'),
block;

$.each(links, function(){
$(this).bind('click', function(e){
e.preventDefault();
block = $(this).find('a').attr('data-name');
$('.pattern-right').css('display', 'none');
$('#pattern-' + block).css('display', 'block');
})
})
$('#pattern-colors').css('display', 'block');
})
Loading

0 comments on commit c72d444

Please sign in to comment.