vendor/assets/javascripts/angular-bootstrap.js in angularjs-rails-1.0.6.2 vs vendor/assets/javascripts/angular-bootstrap.js in angularjs-rails-1.0.7

- old
+ new

@@ -1,7 +1,7 @@ /** - * @license AngularJS v1.0.6 + * @license AngularJS v1.0.7 * (c) 2010-2012 Google, Inc. http://angularjs.org * License: MIT */ (function(window, angular, undefined) { 'use strict'; @@ -147,9 +147,17 @@ } }] }; }; +directive.table = function() { + return { + restrict: 'E', + link: function(scope, element, attrs) { + element[0].className = 'table table-bordered table-striped code-table'; + } + }; +}; directive.tabPane = function() { return { require: '^tabbable', restrict: 'C',