Skip to content
This repository has been archived by the owner on May 30, 2022. It is now read-only.

Commit

Permalink
chore(build): Build v0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianlee44 committed Jul 30, 2014
1 parent 889ccaf commit 7cd88ec
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 13 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v0.3.3 (2014/7/30)
## Bug Fixes
- **macPopover:** Fix popover not compiling low priority template
([706f1ab5](https://github.com/StartTheShift/MacGyver/commit/706f1ab5bfc2f4a102ccb1b0aecbf0f755709633))


# v0.3.2 (2014/6/29)
## Bug Fixes
- **macAutocomplete:**
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": "MacGyver",
"version": "0.3.2",
"version": "0.3.3",
"main": [
"lib/img/ui-bg_flat_0_aaaaaa_40x100.png",
"lib/img/ui-bg_glass_75_ffffff_1x400.png",
Expand Down
6 changes: 3 additions & 3 deletions lib/macgyver-core.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* MacGyver v0.3.2
* MacGyver v0.3.3
* @link http://starttheshift.github.io/MacGyver
* @license MIT
*/
Expand Down Expand Up @@ -2055,7 +2055,7 @@ angular.module("Mac").directive("macPopover", [
"popover", "popoverViews", "util", function(popover, popoverViews, util) {
return {
restrict: "E",
link: function($scope, element, attrs) {
compile: function(element, attrs) {
var opts;
opts = util.extendAttributes("macPopover", popoverViews.popoverDefaults, attrs);
if (!attrs.id) {
Expand All @@ -2073,7 +2073,7 @@ angular.module("Mac").directive("macPopover", [
"$compile", function($compile) {
return {
restrict: "A",
link: function($scope, element, attrs, ctrl) {
link: function($scope, element, attrs) {
element.html($scope.macPopoverTemplate);
return $compile(element.contents())($scope);
}
Expand Down
2 changes: 1 addition & 1 deletion lib/macgyver-datepicker.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* MacGyver v0.3.2
* MacGyver v0.3.3
* @link http://starttheshift.github.io/MacGyver
* @license MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/macgyver-filters.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* MacGyver v0.3.2
* MacGyver v0.3.3
* @link http://starttheshift.github.io/MacGyver
* @license MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/macgyver-string-filter.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* MacGyver v0.3.2
* MacGyver v0.3.3
* @link http://starttheshift.github.io/MacGyver
* @license MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/macgyver-table.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* MacGyver v0.3.2
* MacGyver v0.3.3
* @link http://starttheshift.github.io/MacGyver
* @license MIT
*/
Expand Down
6 changes: 3 additions & 3 deletions lib/macgyver.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* MacGyver v0.3.2
* MacGyver v0.3.3
* @link http://starttheshift.github.io/MacGyver
* @license MIT
*/
Expand Down Expand Up @@ -7388,7 +7388,7 @@ angular.module("Mac").directive("macPopover", [
"popover", "popoverViews", "util", function(popover, popoverViews, util) {
return {
restrict: "E",
link: function($scope, element, attrs) {
compile: function(element, attrs) {
var opts;
opts = util.extendAttributes("macPopover", popoverViews.popoverDefaults, attrs);
if (!attrs.id) {
Expand All @@ -7406,7 +7406,7 @@ angular.module("Mac").directive("macPopover", [
"$compile", function($compile) {
return {
restrict: "A",
link: function($scope, element, attrs, ctrl) {
link: function($scope, element, attrs) {
element.html($scope.macPopoverTemplate);
return $compile(element.contents())($scope);
}
Expand Down
2 changes: 1 addition & 1 deletion lib/macgyver.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "Adrian Lee <adrian@adrianlee.me>",
"name": "MacGyver",
"description": "A library of shared directives",
"version": "0.3.2",
"version": "0.3.3",
"homepage": "http://starttheshift.github.io/MacGyver",
"repository": {
"type": "git",
Expand Down

0 comments on commit 7cd88ec

Please sign in to comment.