
Product
Introducing Historical Analytics – Now in Beta
We’re excited to announce a powerful new capability in Socket: historical data and enhanced analytics.
@shagstrom/angular-split-pane
Advanced tools
An AngularJS Split Pane directive
The directive should work in IE8 and above as well as in Chrome, Safari and Firefox.
You can add angular-split-pane.js by to you project by installing with bower
bower install angular-split-pane
or with npm
npm install @shagstrom/angular-split-pane
You can get and set component sizes in the object specified by attribute "split-pane-properties".
Below is a basic example on how to use the directive:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Fixed left</title>
<link rel="stylesheet" href="../bower_components/split-pane/split-pane.css" />
<script src="../bower_components/jquery/dist/jquery.min.js"></script>
<script src="../bower_components/angular/angular.js"></script>
<script src="../bower_components/split-pane/split-pane.js"></script>
<script src="../bower_components/angular-split-pane/angular-split-pane.js"></script>
<style type="text/css">
html, body { height: 100%; min-height: 100%; margin: 0; padding: 0; }
/* The styling bolow is very simple. You can style things your own way. */
body { box-sizing: border-box; background: #aaa; padding: 5px; }
.split-pane-divider { background: #aaa; }
.split-pane-component { background: #fff; }
</style>
</head>
<body data-ng-app="example">
<div data-split-pane>
<div data-split-pane-component data-width="20em">left</div>
<div data-split-pane-divider data-width="5px"></div>
<div data-split-pane-component>right</div>
</div>
<script>
angular.module('example', ['shagstrom.angular-split-pane']);
</script>
</body>
</html>
Here is an example where we are getting and setting component sizes:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Fixed left</title>
<link rel="stylesheet" href="../bower_components/split-pane/split-pane.css" />
<script src="../bower_components/jquery/dist/jquery.min.js"></script>
<script src="../bower_components/angular/angular.js"></script>
<script src="../bower_components/split-pane/split-pane.js"></script>
<script src="../angular-split-pane.js"></script>
<style type="text/css">
html, body { height: 100%; min-height: 100%; margin: 0; padding: 0; }
/* The styling bolow is very simple. You can style things your own way. */
body { box-sizing: border-box; background: #aaa; padding: 5px; }
.split-pane-divider { background: #aaa; }
.split-pane-component { background: #fff; }
</style>
</head>
<body data-ng-app="example" ng-controller="MainCtrl">
<div data-split-pane data-split-pane-properties="splitPaneProperties">
<div data-split-pane-component data-width="20em">
<p>Left</p>
<p>
<button data-ng-click="setLastComponent(0)">Collapse right component</button>
</p>
<p>Left component size {{splitPaneProperties.firstComponentSize}}px</p>
<p>Right component size {{splitPaneProperties.lastComponentSize}}px</p>
</div>
<div data-split-pane-divider data-width="5px"></div>
<div data-split-pane-component>
<p>Right</p>
<p>
<button data-ng-click="setFirstComponent(0)">Collapse left component</button>
</p>
<p>Left component size {{splitPaneProperties.firstComponentSize}}px</p>
<p>Right component size {{splitPaneProperties.lastComponentSize}}px</p>
</div>
</div>
<script>
angular.module('example', ['shagstrom.angular-split-pane'])
.controller('MainCtrl', function ($scope) {
$scope.splitPaneProperties = {};
$scope.setFirstComponent = function (value) {
$scope.splitPaneProperties.firstComponentSize = value;
};
$scope.setLastComponent = function (value) {
$scope.splitPaneProperties.lastComponentSize = value;
};
});
</script>
</body>
</html>
FAQs
An AngularJS Split Pane directive
The npm package @shagstrom/angular-split-pane receives a total of 19 weekly downloads. As such, @shagstrom/angular-split-pane popularity was classified as not popular.
We found that @shagstrom/angular-split-pane demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
We’re excited to announce a powerful new capability in Socket: historical data and enhanced analytics.
Product
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.
Company News
Socket is bringing best-in-class reachability analysis into the platform — cutting false positives, accelerating triage, and cementing our place as the leader in software supply chain security.