Skip to content

Commit

Permalink
Refactor and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
acdlite committed Mar 18, 2014
1 parent fc9ed9e commit cb7f84e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/sassy-namespaces.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
Compass::Frameworks.register('sassy-namespaces', :path => extension_path)

module SassyNamespaces
VERSION = "0.1.4"
VERSION = "0.1.5"
DATE = "2014-03-18"
end
8 changes: 4 additions & 4 deletions stylesheets/_sassy-namespaces.scss
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ $__sassy-namespaces: ();
}
}

@function namespace($args...) {
@return namespace-get($args...) or namespace-set($args...);
@function namespace($name, $args...) {
@return namespace-get($name, $args...) or namespace-set($name, $args...);
}

@mixin namespace-set($args...) {
@mixin namespace-set($name, $args...) {
$namespace: namespace-set($name, $args...);
}

@mixin namespace-get($args...) {
@mixin namespace-get($name, $args...) {
$namespace: namespace-get($name, $args...);
}

Expand Down

0 comments on commit cb7f84e

Please sign in to comment.