Skip to content
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.

Commit

Permalink
Release 1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jameskleeh committed Jan 26, 2016
1 parent 5eac049 commit d458be4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 22 deletions.
8 changes: 1 addition & 7 deletions angular-confirm.js
Original file line number Diff line number Diff line change
@@ -1,22 +1,16 @@
/*
* angular-confirm
* https://github.com/Schlogen/angular-confirm
* @version v1.2.2 - 2015-12-08
* @version v1.2.3 - 2016-01-26
* @license Apache
*/
(function (root, factory) {
'use strict';
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define(['angular'], factory);
} else if (typeof module !== 'undefined' && typeof module.exports === 'object') {
// CommonJS support (for us webpack/browserify/ComponentJS folks)
module.exports = factory(require('angular'));
} else {
// in the case of no module loading system
// then don't worry about creating a global
// variable like you would in normal UMD.
// It's not really helpful... Just call your factory
return factory(root.angular);
}
}(this, function (angular) {
Expand Down
13 changes: 2 additions & 11 deletions angular-confirm.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "angular-confirm-modal",
"main": "angular-confirm.min.js",
"version": "1.2.2",
"version": "1.2.3",
"homepage": "https://github.com/Schlogen/angular-confirm",
"authors": [
"James Kleeh"
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-confirm",
"version": "1.2.2",
"version": "1.2.3",
"description": "Angular Confirm Modal",
"main": "angular-confirm.min.js",
"scripts": {
Expand Down Expand Up @@ -34,8 +34,8 @@
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.4.2",
"jasmine-core": "^2.3.4",
"karma": "0.12.37",
"karma-chrome-launcher": "^0.2.0",
"karma": "0.13.19",
"karma-chrome-launcher": "^0.2.2",
"karma-jasmine": "^0.3.6"
}
}

0 comments on commit d458be4

Please sign in to comment.