This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|- app | |
| |- assets | |
| | |- javascripts | |
| | | |- popover.js | |
| | |- stylesheets | |
| | | |- popover.scss | |
| |- helpers | |
| | |- ui_popover.rb | |
| |- views | |
| | |- styleguide |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chai = require('chai') | |
beforeEach -> | |
this.assert = chai.assert |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.4.14) | |
// Compass (v1.0.3) | |
// ---- | |
$foo: 10; | |
.foo { | |
$foo: 20; | |
border-width: $foo; // 20 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#* | |
# Decodes HTML entities into their regular string values. | |
# | |
# @private | |
# @param {String} str - The encoded string. | |
# @returns {String} The decoded string. | |
decode_html_entities = (str) -> | |
element = document.createElement('div') | |
element.innerHTML = str.trim() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
@mixin foo { | |
@at-root { | |
.foo#{&} { | |
@content; | |
} |
NewerOlder