Skip to content

Commit

Permalink
Now rewriting DOM with iFrame content instead of appending it.
Browse files Browse the repository at this point in the history
  • Loading branch information
seyDoggy committed Aug 6, 2013
1 parent 998524d commit 6aa256f
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@



"status": "open",
"status": "closed",



Expand Down
5 changes: 3 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"name": "rFrame",
"version": "0.0.2",
"version": "0.0.3",
"main": "./src/jquery.rframe.js",
"ignore": [
"**/.*"
"**/.*",
"demo/"
],
"dependencies": {
"jquery": ">= 1.8.0"
Expand Down
1 change: 0 additions & 1 deletion demo/files/jquery.rframe.min.js

This file was deleted.

2 changes: 1 addition & 1 deletion demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ <h2>Heading</h2>
<script src="./files/bootstrap-carousel.js"></script>
<script src="./files/bootstrap-typeahead.js"></script>

<script src="./files/jquery.rframe.min.js"></script>
<script src="./files/jquery.rframe.js"></script>
<script>
jQuery(function ($) {
$.rFrame();
Expand Down
2 changes: 1 addition & 1 deletion jquery.rframe.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 rFrame.jquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"iframe",
"rframe"
],
"version": "0.0.2",
"version": "0.0.3",
"author": {
"name": "Adam Merrifield",
"url": "https://github.com/seyDoggy/rFrame/blob/master/AUTHORS.txt"
Expand Down
4 changes: 2 additions & 2 deletions src/jquery.rframe.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'use strict';

var pluginName = 'rFrame',
pluginVersion = '0.0.2';
pluginVersion = '0.0.3';

$.rFrame = function(options) {
/*
Expand Down Expand Up @@ -246,7 +246,7 @@
/*
* Implement
*/
$('body').append(rframe.rFrame);
$('body').html(rframe.rFrame);
rframe.setSelect();
}
};
Expand Down

0 comments on commit 6aa256f

Please sign in to comment.